v1

latestOpenAPI 3.0.02026-08-066924329.8 KB
Clients

Get all clients

Get all clients. Use our predefined filters or make use of the search parameter.

get/clients

Query parameters

limitinteger nullable
Example:100
searchstring nullable
Example:GmbH
idsstring[] nullable
activeboolean nullable
columnstring
direction'asc' | 'desc'
[
  {
    "column": "id",
    "direction": "desc"
  }
]
withLimitedPartOfProjectsboolean nullable
Example:true

Returns a limited number of projects within the clients data. If the parameter projectsLimit is not set, the limit parameter will be used.

projectsLimitinteger nullable
Example:25

Sets a own limit of entries which will be returned with the returned clients. The Parameter withLimitedPartOfProjects must be set.

Response

successful operation

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,
      "projects_count": 5,
      "active_projects_count": 5
    }
  ]
}