Skip to main content
POST
/
api
/
user
/
sms-templates
/
{templateId}
Get template with contact data placeholders resolved
curl --request POST \
  --url https://your-instance.example.com/api/user/sms-templates/{templateId} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "phoneNumber": "<string>",
  "selectedUser": {
    "channelType": "<string>",
    "messengerId": "<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
phoneNumber
string
selectedUser
object

Response

Resolved template returned

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