Skip to main content
GET
/
v1
/
contacts
List contacts
curl --request GET \
  --url https://api.zavu.dev/v1/contacts \
  --header 'Authorization: Bearer <token>'
{
  "items": [
    {
      "id": "<string>",
      "phoneNumber": "+56912345678",
      "countryCode": "CL",
      "profileName": "John Doe",
      "availableChannels": [
        "<string>"
      ],
      "defaultChannel": "sms",
      "verified": true,
      "metadata": {},
      "createdAt": "2023-11-07T05:31:56Z",
      "updatedAt": "2023-11-07T05:31:56Z"
    }
  ],
  "nextCursor": "<string>"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

phoneNumber
string
limit
integer
default:50
Required range: x <= 100
cursor
string

Response

List of contacts.

items
object[]
required
nextCursor
string | null