Skip to main content
GET
/
api
/
v1
/
scheduling
/
{business_id}
/
{establishment_id}
/
customers
List scheduling customers
curl --request GET \
  --url https://api.izap.ai/api/v1/scheduling/{business_id}/{establishment_id}/customers \
  --header 'Authorization: Bearer <token>'
[
  {
    "id": "d1a2b3c4-1234-4a5b-9c8d-abcdef123456",
    "external_id": "9001",
    "name": "Maria Silva",
    "phone_number": "+5511999998888"
  }
]

Authorizations

Authorization
string
header
required

JWT access token obtained from POST /api/v1/auth/jwt/login, the OAuth token endpoint, or a business-scoped API token. Some Business/Chat/Template/Scheduling endpoints alternatively accept HTTP Basic credentials scoped to the business slug.

Path Parameters

business_id
string<uuid>
required
establishment_id
string
required

Query Parameters

phone_number
string
required
name
string
email
string

Response

Matching customers.

id
string
external_id
string
name
string | null
email
string | null
phone_number
string | null