Delete RCS Template API
Delete RCS Template for SMSGatewayCenter APIs
Delete RCS Template API
Use the Delete RCS Template API to remove a template from a bot. This endpoint accepts POST with application/x-www-form-urlencoded and returns JSON.
API Endpoint
https://unify.smsgateway.center/RCSApi/template/delete
Authentication
Send userid (your account username) and password in the request body. Do not publish live usernames or passwords.
| Parameter | Required | Description | Example/Value |
|---|---|---|---|
| userid | Yes | Your SMSGatewayCenter account username. | YourUsername |
| password | Yes | Your account password. | ********** |
| botId | Yes | RCS bot identifier that owns the template. | YOUR_BOT_ID |
| templateName | Yes | Template name or template identifier to delete. | YOUR_TEMPLATE_NAME |
Sample Request (cURL)
curl --location --request POST 'https://unify.smsgateway.center/RCSApi/template/delete' \
--header 'Content-Type: application/x-www-form-urlencoded' \
--data-urlencode 'password={{PASSWORD}}' \
--data-urlencode 'userid=YourUsername' \
--data-urlencode 'botId={{botId}}' \
--data-urlencode 'templateName={{templateIdBase64}}'
Sample Success Response
{
"reason": "Template deleted successfully.",
"status": "success",
"statusCode": "200"
}
Notes
- Deleted templates cannot be used in send requests.
- List remaining templates with the List RCS Templates API.
Testimonials

