Statuses

> Auto-generated from the OpenAPI spec. Method names shown are the manifest > (canonical) names; per-language casing is applied by each SDK.

Record handle: ref(id) → a lazy handle to one Status (get/update/delete, field values, related records). See record handles.

bulkUpdate

PUT /status/

Bulk update statuses

Parameter In Required Description
body body yes Array of Status records values to be updated

Returns: list<Status> · Cost: 1 API call.

create

POST /status/

Create a status

Parameter In Required Description
body body yes Status record array

Returns: Status · Cost: 1 API call.

delete

DELETE /status/{statusId}

Delete a status

Parameter In Required Description
statusId path yes ID of Status

Returns: any · Cost: 1 API call.

get

GET /status/{statusId}

Get a status by ID

Parameter In Required Description
statusId path yes ID of Status

Returns: Status · Cost: 1 API call.

getStatusSystem

GET /status-system/{statusSystemId}

Get a system status by ID

Parameter In Required Description
statusSystemId path yes ID of StatusSystem

Returns: StatusSystem · Cost: 1 API call.

list

GET /status/

List statuses

Parameter In Required Description
filter query no Filter expression to narrow results. Format: field operator value. Multiple conditions are joined with ; or & (AND) or | (OR). Conditions can be grouped with parentheses. Supported operators: = (equals; also matches NULL when value is empty), != (not equals), >, >=, <, <=, ~ (LIKE, use % as wildcard; empty value matches NULL/empty), !~ (NOT LIKE), ... (IN set, comma-separated: statusId...1,2,3). OR across values for one field: status=(active|pending). Examples: filter=name=Acme, filter=created>=2024-01-01;assigneeId=, filter=name~%smith%;statusId...1,2,3, filter=(status=active|status=pending)&spaceId=5.
offset query no Zero-based index of the first record to return. Use together with limit for pagination. Example: offset=20&limit=10 returns records 21–30.
limit query no Maximum number of records to return. Use together with offset for pagination.
order query no Sort order for results. Comma-separated list of field;DIRECTION pairs. Direction is ASC or DESC (default DESC when omitted). Example: order=name;ASC or order=id;ASC,name;DESC.
modul query no Status module
spaceId query no Status spaceId. Multiple ids can be separated using comma
statusSystemId query no StatusSystem ID

Returns: list<Status> · Cost: 1 API call per page (lazy paginator).

listStatusSystem

GET /status-system/

List system statuses

Parameter In Required Description
modul query no Module for which to get status system (empty for all modules)

Returns: list<StatusSystem> · Cost: 1 API call per page (lazy paginator).

update

PUT /status/{statusId}

Update a status

Parameter In Required Description
statusId path yes ID of Status
body body yes Array of Status records values to be updated

Returns: Status · Cost: 1 API call.

updateStatusSystem

PUT /status-system/{statusSystemId}

Update a system status

Parameter In Required Description
statusSystemId path yes StatusSystem ID
body body yes StatusSystem values to be updated

Returns: StatusSystem · Cost: 1 API call.