Skip to main content
POST
/
api
/
templates
Create template
curl --request POST \
  --url https://your-instance.example.com/api/templates \
  --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.

Body

application/json
name
string
required
template
string
required
type
string
required
category
string

Response

Template created

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