Back to Docs
ActiveConversion

API Reference

Complete REST API documentation for managing recipients, lists, campaigns, and automations

Authentication

All API requests require authentication using your API key in the Authorization header:

Authorization: Bearer YOUR_API_KEY

Base URL: https://api.activeconversion.net

POST/api/v1/recipients

Add Recipient

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"
  }
}
PUT/api/v1/recipients/{id}

Update Recipient

Update recipient information

Request Body:

{
  "first_name": "Jane",
  "last_name": "Smith",
  "tags": ["vip"],
  "custom_fields": {
    "last_purchase": "2024-12-15"
  }
}
DELETE/api/v1/recipients/{id}

Delete Recipient

Remove a recipient from your account

GET/api/v1/recipients/{id}

Get Recipient

Retrieve a specific recipient by ID

GET/api/v1/recipients/by-tag

Get Recipients by Tag

Get all recipients with specific tags

Query Parameters:

?tags=customer,premium&operator=AND

Need Help?

Check out our SDKs for easier integration or contact our support team