Clients
Create a client
POST /clients
Authorization
bearerAuth AuthorizationBearer <token>
In: header
Request Body
application/json
TypeScript Definitions
Use the request body type in TypeScript.
Response Body
application/json
curl -X POST "https://loading/api/v1/clients" \ -H "Content-Type: application/json" \ -d '{ "companyName": "Acme CRM", "website": "https://acme.example", "clientPriority": "high" }'{
"data": {
"companyName": "Acme CRM",
"website": "https://acme.example",
"clientPriority": "high"
}
}Empty
Empty
Empty
Empty