Complete REST API documentation for managing recipients, lists, campaigns, and automations
All API requests require authentication using your API key in the Authorization header:
Authorization: Bearer YOUR_API_KEY
Base URL: https://api.activeconversion.net
/api/v1/recipients
Add a new recipient to your account
Request Body:
{
"email": "user@example.com",
"first_name": "John",
"last_name": "Doe",
"tags": ["customer", "premium"],
"custom_fields": {
"company": "Acme Corp",
"plan": "pro"
}
}
/api/v1/recipients/{id}
Update recipient information
Request Body:
{
"first_name": "Jane",
"last_name": "Smith",
"tags": ["vip"],
"custom_fields": {
"last_purchase": "2024-12-15"
}
}
/api/v1/recipients/{id}
Remove a recipient from your account
/api/v1/recipients/{id}
Retrieve a specific recipient by ID
/api/v1/recipients/by-tag
Get all recipients with specific tags
Query Parameters:
?tags=customer,premium&operator=AND
Check out our SDKs for easier integration or contact our support team