Update contact list subscription status
Updates the subscription status of a contact in a specific list. Can set status to active, pending, unsubscribed, bounced, or complained.
post/api/contactLists.updateStatus
Request body
Example request
{
"workspace_id": "ws_1234567890",
"email": "user@example.com",
"list_id": "newsletter",
"status": "active"
}Response
Status updated successfully
Example response
{
"success": true,
"message": "status updated successfully",
"found": true
}