Skip to content
Developers
Clients

Update a client

PATCH /clients/{client_id}

PATCH
/clients/{client_id}

Authorization

bearerAuth
AuthorizationBearer <token>

In: header

Path Parameters

client_id*string

Client ID.

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

curl -X PATCH "https://loading/api/v1/clients/string" \  -H "Content-Type: application/json" \  -d '{    "companyName": "Acme CRM Updated"  }'
{
  "data": {
    "companyName": "Acme CRM Updated"
  }
}
Empty
Empty
Empty
Empty