v1

latestOpenAPI 3.0.02026-08-066924329.8 KB
Clients

Update Client

put/clients/ext/{ext-id}

Path parameters

ext-idstring required

Request body

namestring
ext_tool_idstring nullable
infostring nullable
colorstring nullable
activeboolean nullable
billableboolean nullable
acronymstring nullable
demo_flagboolean nullable

Example request

{
  "name": "<NAME>",
  "ext_tool_id": "24",
  "info": "Some information about your Client.",
  "color": "#000000",
  "active": true,
  "acronym": "ACR"
}

Response

Client updated successfully

successboolean

Example response

{
  "data": {
    "id": "<ULID>",
    "name": "Test GmbH",
    "ext_tool_id": 24,
    "info": "Some information about your Client.",
    "color": "#000000",
    "active": true,
    "acronym": "ACR",
    "image_id": "<ULID>",
    "demo_flag": true
  }
}