GET
/
v1
/
customers
/
{id}
Fetch customer
curl --request GET \
  --url https://api.useaira.com/v1/customers/{id} \
  --header 'X-API-KEY: <api-key>'
{
  "id": "<string>",
  "externalId": "cust_1234567890abcdef",
  "name": "Acme Inc.",
  "customFields": {
    "custom_field_1": "value1",
    "custom_field_2": "value2"
  }
}

Authorizations

X-API-KEY
string
header
required

API Key Authentication.

Path Parameters

id
string
required

The unique identifier of the customer in our system.

Response

200
application/json

The request was successfully processed and the customer information is returned.