Last updated 11 months ago
client's external id
a name that identifies this client
a short name or abbreviation that identifies this client
client's description
curl -L \ --request POST \ --url '/api/v1/customers/{customerId}/clients/import' \ --header 'Authorization: Bearer JWT' \ --header 'Content-Type: application/json' \ --data '{ "externalId": "text", "name": "text", "callSign": "text", "description": "text" }'
No body
curl -L \ --request POST \ --url '/api/v1/customers/{customerId}/clients/batch' \ --header 'Authorization: Bearer JWT' \ --header 'Content-Type: application/json' \ --data '{ "clients": [ { "externalId": "text", "name": "text", "callSign": "text", "description": "text" } ] }'