Method :POST
URL: https://apiv1.publicators.com/api/Recipients/GetCustomerLists
Get all active lists
Request Information
URI Parameters
None.
Body Parameters
Json format: AuthorizationTokenBindingModel authentication
AuthorizationTokenBindingModel| Name | Description | Type | Additional information |
|---|---|---|---|
| Token |
Token |
globally unique identifier |
Required |
Request Formats
application/json, text/json
Sample:
{
"Token": "57800912-4d65-402f-9cef-cb7860cf46cf"
}
Response Information
Resource Description
Json format: IEnumerable of CustomerListViewModel
Collection of CustomerListViewModel| Name | Description | Type | Additional information |
|---|---|---|---|
| list_id |
List Id |
integer |
None. |
| list_name |
List Name |
string |
None. |
| list_created |
List Date Created DateTime format yyyy/MM/dd HH:mm:ss |
date |
None. |
| list_test |
Is this list used for testing campaigns |
boolean |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"list_id": 1,
"list_name": "sample string 2",
"list_created": "2026/05/25 08:33:52",
"list_test": true
},
{
"list_id": 1,
"list_name": "sample string 2",
"list_created": "2026/05/25 08:33:52",
"list_test": true
}
]