Clients
Authorizations
x-api-keystringRequired
Header parameters
x-tenant-idstring · uuidOptional
Tenant id (uuid v4)
Body
Responses
201Success
application/json
idstringRequiredExample:
Unique identifier of the created client
b86fa12a-76fc-46f5-8a3e-bf39e7be4c4eexternal_client_idstring · nullableRequiredExample:
External client identifier
123456namestringRequiredExample:
Client name
Client namephonestring · nullableRequiredExample:
Client's phone number
937-99-92emailstring · nullableRequiredExample:
Client's email
client@gmail.comcompanystring · nullableRequiredExample:
Client's company name
Client company429
Returned when the rate limit is exceeded
post/api/v1/public/clients/batch
POST /api/v1/public/clients/batch HTTP/1.1
Host: api-stage.hesh.tech
x-api-key: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 140
{
"clients": [
{
"name": "Client name",
"external_client_id": "123456",
"phone": "937-99-92",
"email": "client@gmail.com",
"company": "Client company"
}
]
}[
{
"id": "b86fa12a-76fc-46f5-8a3e-bf39e7be4c4e",
"external_client_id": "123456",
"name": "Client name",
"phone": "937-99-92",
"email": "client@gmail.com",
"company": "Client company"
}
]Last updated

