GET /messaging/v1/email/seed-list-account

Overview 

Reads account data for a seed-list. The MID is used from authentication. Returns the partner list and auto-seed options that are in place for the MID.

Response 

StatusNameTypeDescription
200  Successful read of account data.
 autoSeedListIDstringA globally unique identifier (GUID).
 autoSeedListThresholdintegerThe threshold for auto-seeding.
 autoSeedEnabledbooleanA true or false value indicating if auto-seed is enabled.
 autoSeedListNamestringThe name of the seed-list.
200  Successful read but an empty response when there’s no SeedListAccount entry.

Validation Failure Scenarios 

HTTP StatusDescriptionNotes
400No active auto-seed-list mapping for the given MID.Error code: 10000
429API rate limit throttling is preventing success.Yet to be added.

Usage 

Example Request 

1GET /messaging/v1/email/seed-list-account

Example Response 

Data exists:

1200 OK
2{
3    "autoSeedListID": "f21cec40-0227-4e46-8a0e-a4223c0ec1ea",
4    "autoSeedThreshold": 500000,
5    "autoSeedEnabled": false,
6    "autoSeedListName": "SeedListName"
7}

No data exists:

1200 OK
2{}

Related Items 

DID THIS ARTICLE SOLVE YOUR ISSUE?
Let us know so we can improve!