Get All Unsubscriptions

Get all unsubscriptions

Retrieve all the unsubscriptions available for your account.

GET https://api.cm.com/bulkemail/v1.0/accounts/{accountID}/unsubscriptions

GET Parameters

Name In Description Required Type Example
AccountID Path The account guid True Guid A8C062E4-ECFD-48D0-89B1-A37D2622B7A9
Filter Query The email address to filter on False (default null) String John
Skip Query The amount of unsubscriptions to skip False (default 0) Int 0
Take Query The amount of unsubscriptions to take False (default 1000) Int 1000
X-CM-PRODUCTTOKEN Header Your product token True Guid C24A5029-37DD-4161-9728-F80D8639588E

Responses

Http status Description
200 Successful operation
400 Bad request
[
    {
        "ID": "9df4a027-1123-4d1a-b3ab-277bd9327e48",
        "AccountID": "a8c062e4-ecfd-48d0-89b1-a37d2622b7a9",
        "EmailAddress": "[email protected]",
        "UnsubscriptionType": 1,
        "CreatedOn": "2017-08-03T09:49:19.97",
		"CreatedOnUtc": "2017-08-03T08:49:19.97Z",
        "ModifiedOn": "2017-08-03T09:49:19.97"
        "ModifiedOnUtc": "2017-08-03T08:49:19.97Z"
    }
]