List Opt-Outs
GET /addressbook/optouts
GET /addressbook/optouts Required Permission
read:OptoutsExample Request
curl --location 'https://<hostname>/addressbook/optouts?offset=0&limit=10' \
--header 'Authorization: Bearer YOUR_API_KEY'Query Parameters
Parameter
Type
Required
Description
Success Response (HTTP 200)
{
"success": true,
"records": [
{
"msisdn": "55555555555",
"created_on": "2025-11-10T21:45:12.000Z"
}
],
"offset": 0,
"limit": 10,
"total": 3
}Last updated