Get All From Addresses

Get all from addresses

Retrieve all the from addresses available for your account

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

GET Parameters

Name In Description Required Type Example
AccountID Path The account guid True Guid A8C062E4-ECFD-48D0-89B1-A37D2622B7A9
Skip Query The amount of from address to skip False (default 0) Int 0
Take Query The amount of from address to take False (default 1000) Int 1000
Filter Query The email address to filter on False String [email protected]
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": "860ab261-0a7a-470d-b615-f99523a38f4c",
        "AccountID": "a8c062e4-ecfd-48d0-89b1-a37d2622b7a9",
        "Name": "John Doe",
        "EmailAddress": "[email protected]",
        "CreatedOn": "2017-08-04T11:06:43.826",
        "CreatedOnUtc": "2017-08-04T10:06:43.826Z",
        "ModifiedOn": "2017-08-04T11:06:43.826",
        "ModifiedOnUtc": "2017-08-04T10:06:43.826Z",
        "DeletedOn": null,
        "DeletedOnUtc": null
    }
]