The number of results that will be returned per page.
Kanbert (v1)
Available sorts are name, is_team.
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.
Available includes are users. You can include multiple options by separating them with a comma.
Allowed filter fields (with allowed operators):
| Field | Type | Operators |
|---|---|---|
name | string | in, nin, notin, eq, ne, neq, contains, like, startswith, endswith, isnull, isnotnull, notnull |
is_team | boolean | eq, ne, neq, 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.
- https://api.kanbert.int/api/v1/user-groups
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://api.kanbert.int/api/v1/user-groups?sort=sort%3D-created_at%2Ctitle&include=string&page%5Bsize%5D=30&page%5Bcursor%5D=string&filter=title+contains+%22Acme%22+and+%28created_at+%3E%3D+%222024-01-01%22+or+client.name+contains+%22Corp%22%29' \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>'The cursor paginated collection of UsergroupData
The list of items
Can be used to add an identifier to the client from an external system, must be unique
Can be used to add an identifier to the client from an external system, must be unique
Date of leaving the company - if set in the future, the employee will be archived on that date
The key is the field name for your custom field, value type depends on the field type
{ "data": [ { … } ], "links": [ "string" ], "meta": { "path": "string", "per_page": 0, "next_cursor": "string", "next_cursor_url": "string", "prev_cursor": "string", "prev_cursor_url": "string" } }
- https://api.kanbert.int/api/v1/user-groups/{id}
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://api.kanbert.int/api/v1/user-groups/{id}?findBy=id&include=string' \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>'UsergroupData
Can be used to add an identifier to the client from an external system, must be unique
Can be used to add an identifier to the client from an external system, must be unique
Date of leaving the company - if set in the future, the employee will be archived on that date
The key is the field name for your custom field, value type depends on the field type
{ "id": "string", "external_id": "string", "name": "string", "is_team": true, "users": [ { … } ] }