Skip to main content
GET
/
customers
cURL
curl --request GET \
  --url https://api.juo.io/admin/v1/customers \
  --header 'X-Juo-Admin-Api-Key: <api-key>' \
  --header 'X-Tenant-ID: <x-tenant-id>'
{
  "resource": "list",
  "hasNextPage": true,
  "hasPrevPage": true,
  "endCursor": null,
  "startCursor": null,
  "data": [
    {
      "id": "<string>",
      "resource": "customer",
      "displayName": "<string>",
      "email": null,
      "phone": null
    }
  ]
}

Authorizations

X-Juo-Admin-Api-Key
string
header
required

Headers

X-Tenant-ID
string
required

Query Parameters

query
string
limit
integer
default:20
Required range: 1 <= x <= 100
after
string
Minimum length: 1
before
string
Minimum length: 1
sort
string
default:id:asc

Response

200 - application/json
resource
enum<string>
required
Available options:
list
hasNextPage
boolean
required
hasPrevPage
boolean
required
endCursor
string | null
required
startCursor
string | null
required
data
Customer · object[]
required