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>"
}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>"
}The access token received from the authorization server in the OAuth 2.0 flow.