Kantata Kantata OX Knowledge Base
Release Notes
Status Page

Workspace Task Status Sets

Workspace Task Status Sets represent the connection between workspaces (projects) and task (story) status sets, which enable the use of custom task statuses.

Update task status set on multiple workspaces

Updates the task status set for multiple projects. You must have permission to select task status sets to use the endpoint. If any specified workspaces cannot be updated, the entire request will fail and an error message will be returned that specifies which ones could be updated and why.

This endpoint returns structured Workspace Task Status Sets objects. As with all Kantata OX API endpoints, the returned data will be referenced in sorted order in the results array and will be indexed by ID in the workspace_task_status_sets top-level JSON key. Please see our Response Format section for more information.

Request
Request Body schema: application/json
required
Array of objects

A list of workspaces to update task status sets for.

Array
workspace_id
required
integer <int32>

The ID of the workspace to update.

status_set_id
required
integer <int32>

The ID of the task status set to assign to the workspace.

Responses
200

Workspace Task Status Sets has been updated.

Response Schema: application/json
count
integer <int32>
object
Array of objects
object
400

Bad Request

401

Unauthorized request

403

Forbidden request

404

Page Not Found

422

Unprocessable Entity

503

Service is unavailable

put/workspace_task_status_sets/bulk_update
Request samples
application/json
{
  • "workspace_task_status_sets": [
    ]
}
Response samples
application/json
{
  • "count": 0,
  • "meta": {
    },
  • "results": [
    ],
  • "workspace_task_status_sets": {
    }
}