Skip to main content
POST
/
admin
/
notify-template
/
clone
Create a Clone Notify template.
curl --request POST \
  --url https://api.example.com/admin/notify-template/clone \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "notifyTemplateIDBeingCloned": 123,
  "notifyTemplateCodeCloningInto": "ALL_CAPS_TEMPLATE_CODE_HERE"
}
'
{
  "success": true,
  "data": "<unknown>"
}

Authorizations

Authorization
string
header
required

The access token received from the authorization server in the OAuth 2.0 flow.

Body

application/json
notifyTemplateIDBeingCloned
integer<int32>
default:123
notifyTemplateCodeCloningInto
string | null
default:ALL_CAPS_TEMPLATE_CODE_HERE

Response

Success

success
boolean
data
unknown