Links

Lists

We are no longer updating this site. For user documentation, please go to User Docs. For developer documentation, please go to Developer Docs. If you have any questions or feedback, please submit a ticket.
get
https://api.zaius.com/v3
/lists/subscriptions?{identifier}={identifier_value}
Get Subscription Status
Example Request
curl -iX GET \
'https://api.zaius.com/v3/lists/[email protected]' \
-H 'x-api-key: example.apiKey'
The ts_status_updated value in the response will indicate the last time the subscribed value was changed. If the customer has never been subscribed to a list, the subscribed value is false and the ts_status_updated value is null.
The explicit_opt_in Boolean value in the response will indicate if the email address explicitly consented to receive marketing messages, or if global marketing consent is null. Learn more about implicit and explicit consent in the Zaius Help Center. explicit_opt_in will be false when global marketing consent is false or null.
post
https://api.zaius.com/v3
/lists/subscriptions
Subscribe / Unsubscribe
Example Payload
{
"list_id": "sample_list",
"email": "[email protected]",
"subscribed": false
}
get
https://api.zaius.com/v3
/lists
Get Lists
Example Request
curl -iX GET \
'https://api.zaius.com/v3/lists' \
-H 'x-api-key: example.apiKey'
post
https://api.zaius.com/v3
/lists
Create List
Example Payload
{
"name": "My List"
}