Create Callback
Verify Callback
Get Callback
Update Callback
Delete Callback
Get All Callbacks
Create Subscription
Delete Subscription
Get Subscription
Get All Subscriptions for a Callback
Update Subscription
Regenerate Signature Key
Retrieves details about all registered callbacks.
To retrieve information about callbacks, issue a GET request to the /platform/v1/ens-callbacks endpoint.
1Host: https://YOUR_SUBDOMAIN.rest.marketingcloudapis.com
2GET /platform/v1/ens-callbacks
3Content-Type: application/json
4Authorization: Bearer YOUR_ACCESS_TOKENThe response contains information about all of the callbacks in the account.
1HTTP/1.1 200 Success
2[{
3 "callbackId": "65b885ab-c2b4-46fe-85d0-d6cb8be8057d",
4 "callbackName": "cb1",
5 "url": "https://example1.com/",
6 "maxBatchSize": 1000,
7 "status": "verified",
8 "statusReason": "none"
9 },
10 {
11 "callbackId": "65b885ab-c2b4-46fe-85d0-d6cb8be8057e",
12 "callbackName": "cb2",
13 "url": "https://example2.com/",
14 "maxBatchSize": 750,
15 "status": "verified",
16 "statusReason": "none"
17 }]This table lists the possible responses for this endpoint.
| Response | Reason |
|---|---|
200 Success | The request to retrieve the callbacks succeeded. |
400 Bad Request | The request was invalid. Make sure the request includes all the required headers. |
403 Forbidden | The request couldn’t be authorized. Make sure the request headers include a valid authorization token. |
500 Server Error | An internal error occurred. Try your request again later. |