Skip to main content
PUT
/
api
/
user
/
template-categories
/
{id}
Update a template category (superadmin)
curl --request PUT \
  --url https://your-instance.example.com/api/user/template-categories/{id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "<string>",
  "displayName": "<string>",
  "description": "<string>",
  "color": "<string>",
  "isActive": true
}
'
{}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
string
required

Body

application/json
name
string
displayName
string
description
string
color
string
isActive
boolean

Response

Category updated

Generic response envelope. Endpoint-specific fields are intentionally open.