# List all clients (full) Required scopes: client:read Endpoint: GET /clients/full Version: v1 Security: http, oauth2 ## Query parameters: - `sort` (string) Available sorts are name, shortcode, created_at.You can sort by multiple options by separating them with a comma. To sort in descending order, use - sign in front of the sort, for example: -title. Example: "sort=-created_at,title" - `include` (string) Available includes are projects. You can include multiple options by separating them with a comma. - `page[size]` (integer) The number of results that will be returned per page. - `page[cursor]` (string) The cursor to start the pagination from. - `filter` (string) Allowed filter fields (with allowed operators): | Field | Type | Operators | |------|------|-----------| | name | string | in, nin, notin, eq, ne, neq, contains, like, startswith, endswith, isnull, isnotnull, notnull | | shortcode | string | in, nin, notin, eq, ne, neq, contains, like, startswith, endswith, isnull, isnotnull, notnull | | archived | enum: with, only, without | eq | | segment | enum | eq, ne, neq, in, nin, notin, isnull, isnotnull, notnull | | primary_contact.id | id | eq, ne, neq, in, nin, notin, isnull, isnotnull, notnull | | projects | Relation - shortcode (string) - name (string) - is_acquisition (boolean) - status (enum) | any, none, count, all | | origin_space.id | id | eq, ne, neq, in, nin, notin, isnull, isnotnull, notnull | Filtering expression. Accepts either JSON (array/tree of conditions) or a readable string DSL. You can check the full syntax at Docs Filtering section. Special values: - me.id — current authenticated user id (usable on fields of type id). Example: id eq me.id - now — current date-time. Example: dueOn lt now - sow/eow — start/end of week. Examples: dueOn gt sow, dueOn lt eow - som/eom — start/end of month. Examples: dueOn gt som, dueOn lt eom - today — special date for today; with eq it expands to the whole day range. Example: dueOn eq today - today±Nd — relative day offset. Examples: today-30d, today+5d. Example: "title contains \"Acme\" and (created_at >= \"2024-01-01\" or client.name contains \"Corp\")" ## Response 200 fields (application/json): - `data` (array, required) The list of items - `data.id` (string, required) - `data.external_id` (string,null, required) Can be used to add an identifier to the client from an external system, must be unique - `data.external_origin` (string,null, required) If originated from external system origin is added - `data.name` (string, required) - `data.shortcode` (string,null, required) - `data.segment` (string, required) Enum: "A", "B", "C" - `data.updated_at` (string, required) - `data.created_at` (string, required) - `data.primary_contact` (any, required) - `data.projects` (array) - `data.projects.external_id` (string,null, required) Can be used to add an identifier to the project from an external system, must be unique - `data.projects.title` (string, required) - `data.projects.po_number` (string,null, required) - `data.projects.project_type` (object, required) - `data.projects.project_type.color` (string, required) - `data.projects.project_type.order` (integer, required) - `data.projects.project_type.is_default` (boolean, required) - `data.projects.status` (string, required) - `data.projects.is_acquisition` (boolean, required) - `data.projects.is_private` (boolean, required) - `data.projects.start_date` (string,null, required) - `data.projects.end_date` (string,null, required) - `data.projects.client` (object, required) - `data.projects.client.origin_space` (any, required) - `data.projects.tags` (array) - `data.projects.custom_fields` (object, required) The key is the field name for your custom field, value type depends on the field type - `data.projects.team` (array) Project team - `data.projects.team.first_name` (string, required) - `data.projects.team.last_name` (string, required) - `data.projects.team.email` (string, required) - `data.projects.team.type` (string, required) Enum: "user", "guest", "tax_advisor", "integration" - `data.projects.team.added_at` (string, required) - `data.projects.team.space` (object, required) - `data.projects.guests` (array) Project guests - `data.projects.computed_fields` (object) - `links` (array, required) - `meta` (object, required) - `meta.path` (string,null, required) Base path for paginator generated URLs. - `meta.per_page` (integer, required) Number of items shown per page. - `meta.next_cursor` (string,null, required) - `meta.next_cursor_url` (string,null, required) - `meta.prev_cursor` (string,null, required) - `meta.prev_cursor_url` (string,null, required) ## Response 401 fields (application/json): - `message` (string, required) Error overview.