Skip to main content
POST
/
status-groups
/
update
Update status group by id
curl --request POST \
  --url https://api.obselite.com/v0/status-groups/update \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "key": "CYCLE",
  "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "name": "<string>",
  "description": "<string>",
  "isEnabled": true,
  "lockedAt": "<string>",
  "include": "<string>",
  "teams": [
    "3c90c3cc-0d44-4b50-8888-8dd25736052a"
  ],
  "statuses": [
    "3c90c3cc-0d44-4b50-8888-8dd25736052a"
  ]
}'
{
  "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "name": "<string>",
  "description": "<string>",
  "key": "CYCLE",
  "organization": {},
  "teams": [
    {}
  ],
  "statuses": [
    {}
  ],
  "activities": [
    {}
  ]
}

Authorizations

Authorization
string
header
required

The API token generated from the Obselite dashboard

Body

application/json
key
enum<string> | null
Available options:
CYCLE,
FEATURE,
ORGANIZATION,
PRODUCT,
PROJECT,
TEAM,
TECHNOLOGY,
TASK,
USER
id
string<uuid>

Status Group UUID

name
string
description
string | null
isEnabled
boolean
lockedAt
string | null
include
string

Available options: teams, statuses, activities

teams
string<uuid>[]
statuses
string<uuid>[]

Response

Successful response

id
string<uuid>
required

Status Group UUID

name
string
required
description
string | null
key
enum<string> | null
Available options:
CYCLE,
FEATURE,
ORGANIZATION,
PRODUCT,
PROJECT,
TEAM,
TECHNOLOGY,
TASK,
USER
organization
object | null

The organization that owns this status group, following the organization schema

teams
array
statuses
array
activities
array