### POST /api/campaigns/export Source: https://docs.mailshake.com/article/170-how-to-export-list-cleaning-results-via-api Exports list cleaning results using the Campaigns.export API operation. Requires 'exportType' set to 'list-cleaning' and 'recipientBatchIDs'. ```APIDOC ## POST /api/campaigns/export ### Description Exports list cleaning results as a CSV file. This operation requires specific parameters to identify the data to be exported. ### Method POST ### Endpoint /api/campaigns/export ### Parameters #### Query Parameters - **exportType** (string) - Required - The type of export. Use "list-cleaning" for list cleaning results. - **recipientBatchIDs** (string) - Required - A comma-separated string of recipient batch IDs (e.g., "1,2,3"). ### Request Example ```json { "exportType": "list-cleaning", "recipientBatchIDs": "1,2,3" } ``` ### Response #### Success Response (200) - **file_url** (string) - A URL to download the exported CSV file. #### Response Example ```json { "file_url": "https://mailshake.com/exports/list-cleaning-results-12345.csv" } ``` ``` -------------------------------- ### Insert Dynamic Image Tag Source: https://docs.mailshake.com/article/75-how-do-i-insert-a-dynamic-image Use this HTML img tag with a merge tag in the 'src' attribute to display a unique image for each recipient. Ensure the merge tag in your CSV does not include 'http://' and prefix it with 'http://' in the tag. ```html ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.