EaserixDocs
DevelopersAPI referenceCronCrunchClients

Create a client

Creates a client. Color defaults to "#c53a17" when omitted.

View as Markdown
POST
/v1/clients
AuthorizationBearer <token>

In: header

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

application/json

application/json

application/json

application/json

curl -X POST "https://example.com/v1/clients" \  -H "Content-Type: application/json" \  -d '{    "name": "string"  }'
{  "client": {    "id": "string",    "name": "string",    "color": "string",    "created": "2019-08-24T14:15:22Z",    "visibility": "string",    "ownerId": "string",    "crmCompanyId": "string"  }}