Skip to main content
PUT
/
api
/
user
/
sms-templates
/
{templateId}
Update an SMS template
curl --request PUT \
  --url https://your-instance.example.com/api/user/sms-templates/{templateId} \
  --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

templateId
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.