Skip to main content
POST
/
configuration
/
update
Update configuration
curl --request POST \
  --url https://api.obselite.com/v0/configuration/update \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "taskPrefix": "<string>",
  "maximumAssignees": 123,
  "automaticPrioritization": true,
  "prioritizationLabels": [
    "<string>"
  ],
  "prioritizationLevels": [
    123
  ],
  "lockedAt": "<string>"
}'
{
  "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "automaticPrioritization": true,
  "maximumAssignees": 123,
  "prioritizationLabels": [
    "<string>"
  ],
  "prioritizationLevels": [
    123
  ],
  "organization": {},
  "team": {},
  "activities": [
    {}
  ]
}

Authorizations

Authorization
string
header
required

The API token generated from the Obselite dashboard

Body

application/json
taskPrefix
string | null
maximumAssignees
integer
automaticPrioritization
boolean
prioritizationLabels
string[]
prioritizationLevels
integer[]
lockedAt
string | null

Response

Successful response

id
string<uuid>
required

Configuration UUID

automaticPrioritization
boolean
required
maximumAssignees
integer
required
prioritizationLabels
string[]
required
prioritizationLevels
integer[]
required
organization
object | null

The organization that owns this configuration, following the organization schema

team
object | null

The team that this configuration is associated with, following the team schema

activities
array