Skip to main content

Import Suppression List

POST 

/suppression/import

Create a new suppression list by importing from csv file

Creates a new suppression list by importing customer's email addresses from a CSV file.
Use this endpoint to quickly build a suppression list, ensuring that the specified customers will be excluded from receiving any campaigns.

Request

Body

    suppressionFile binaryrequired

    The CSV file containing email addresses to suppress - File should have a header 'Value' and email addresses in the subsequent rows

    suppression objectrequired

    suppression - Ex: { "name": "Suppression List 1", "scope": "LOCAL" }

    name stringrequired

    Name of the suppression list

    scope stringrequired

    Possible values: [LOCAL, GLOBAL]

    Scope of suppression - LOCAL (campaign-specific) or GLOBAL (account-wide)

Responses

Successful operation

Schema
    id int64
    name string
    type string

    Possible values: [EMAIL, MD5, SHA256]

    scope string

    Possible values: [LOCAL, GLOBAL]

Loading...