GET
/api/contactsList contacts
Paginated list of contacts.
URL: https://api.actiwapi.com/api/contacts
Auth: JWT Bearer
Headers
| Header | Value | Required |
|---|---|---|
| Authorization | Bearer {accessToken} | Yes |
| Content-Type | application/json | Yes* |
Query parameters
page— Page numbersearch— Search by name or phone
Code examples
curl -X GET "https://api.actiwapi.com/api/contacts" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer {accessToken}"Response example200
{
"success": true,
"data": [{ "id": "uuid", "phone": "919876543210", "name": "John Smith", "optIn": true }],
"pagination": { "page": 1, "total": 142 }
}