RayFlow Docs
Api

List Contacts

GET
/api/v1/contacts

Fetch a paginated list of all contacts, including their tags and attributes.

Authorization

AuthorizationBearer <token>

In: header

Query Parameters

page?integer

Page number

Default1
limit?integer

Items per page

Default10

Response Body

application/json

curl -X GET "https://example.com/api/v1/contacts"
{
  "success": true,
  "data": [
    {
      "id": "string",
      "phoneNumber": "string"
    }
  ],
  "pagination": {}
}
Empty