Marketing SMS API

Marketing SMS Templates


Resource representation

{ "id": {string}, "name": {string}, "text": {string} }
Parameter name Value Description
id string Identifier of the message template.
name string Name of the message template.
text string Text body of the message template.

Delete

Authentication is required to execute this request. Please refer to Authentication for more.

Request

HTTP Request

DELETE https://api.agendize.com/api/2.0/messages/sms/templates/{templateId}

Parameters

Parameter name Value Description
Path parameters
templateId string Message Template identifier.

Request body

Do not supply a request body with this method.

Response

If successful, this method returns an empty response body.


Get

Authentication is required to execute this request. Please refer to Authentication for more.

Request

HTTP Request

GET https://api.agendize.com/api/2.0/messages/sms/templates/{templateId}

Parameters

Parameter name Value Description
Path parameters
templateId string Message Template identifier.

Request body

Do not supply a request body with this method.

Response

If successful, this method returns a Message Template in the response body.


List

Authentication is required to execute this request. Please refer to Authentication for more.

Request

HTTP Request

GET https://api.agendize.com/api/2.0/messages/sms/templates

Request body

Do not supply a request body with this method.

Response

If successful, this method returns a response body with the following structure:


Insert

Authentication is required to execute this request. Please refer to Authentication for more.

Request

HTTP Request

POST https://api.agendize.com/api/2.0/messages/sms/templates

Request body

In the request body, supply a Message Template Resource with the following properties:

Parameter name Value Description
Required Properties
name string Name of the message template.
text string Text body of the message template.

Response

If successful, this method returns a Message Template in the response body.


Update

Authentication is required to execute this request. Please refer to Authentication for more.

Request

HTTP Request

PUT https://api.agendize.com/api/2.0/messages/sms/templates/{templateId}

Parameters

Parameter name Value Description
Path parameters
templateId string Template identifier.

Request body

In the request body, supply a Message Template Resource with the following properties:

Parameter name Value Description
Optional Properties
name string Name of the message template.
text string Text body of the message template.

Response

If successful, this method returns a Message Template Resource in the response body.