Skip to main content
PUT
/
api
/
templates
/
{id}
Update template
curl --request PUT \
  --url https://your-instance.example.com/api/templates/{id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "<string>",
  "template": "<string>",
  "type": "<string>",
  "category": "<string>"
}
'
{}

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
template
string
type
string
category
string

Response

Template updated

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