Authentication
All endpoints require:Authorization: Bearer YOUR_API_KEYX-Project-ID: YOUR_PROJECT_ID(or encoded in the API key)
Endpoints
| Method | Path | Description |
|---|---|---|
GET | /api/v1/contacts/lists | List all contact lists |
POST | /api/v1/contacts/lists | Create a list |
GET | /api/v1/contacts/lists/:id | Get a single list |
PATCH | /api/v1/contacts/lists/:id | Update a list |
DELETE | /api/v1/contacts/lists/:id | Delete a list |
GET | /api/v1/contacts/lists/:id/members | Get list members |
POST | /api/v1/contacts/lists/:id/members | Add a contact to a list |
DELETE | /api/v1/contacts/lists/:id/members | Remove a contact from a list |
List All Contact Lists
SDK
Create a List
SDK
Update a List
SDK
Delete a List
Deletes the list. Contacts are not deleted.SDK
Get List Members
SDK
Add Contact to List
SDK
Remove Contact from List
SDK