Update message template
Base URL:
PATCH: https://api.smsgatewayapi.com/v1/messagetemplates/
| Parameter | Input | Description | |
|---|---|---|---|
| client_id | API client ID | Login and go to 'Advanced' - 'API authentication' to find the API keys | Required | 
| client_secret | API client secret | Login and go to 'Advanced' - 'API authentication' to find the API keys | Required | 
| ID | message id | The ID of the message to be updated | Required | 
| title | title | The title of the message to be updated | Optional | 
| message | message | The text of the message to be updated | Optional | 
| order | sort order | The sort order of the template | Optional | 
<?php
	//PHP - cURL			
	$ch = curl_init();
	$url = "https://api.smsgatewayapi.com/v1/messagetemplates/";
	$client_id = "XXX"; // Your API client ID (required)
	$client_secret = "YYY"; // Your API client secret (required)
	$data = [
		'ID' => {ID} //Message ID (required)
	];
	curl_setopt($ch, CURLOPT_URL, "$url");
	curl_setopt($ch, CURLOPT_POST, true);
	curl_setopt($ch, CURLOPT_CUSTOMREQUEST, 'PATCH');
	curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
	curl_setopt($ch, CURLOPT_VERBOSE, true);
	curl_setopt($ch, CURLOPT_HTTPHEADER, [
		"X-Client-Id: $client_id",
		"X-Client-Secret: $client_secret",
		"Content-Type: application/json",
	]);
	curl_setopt($ch, CURLOPT_POSTFIELDS, json_encode($data));
	$response = curl_exec($ch);
?>
			Example request single:
{
	"ID": "3473",
	"title": "test title",
	"message": "Hapy birthday [FIRSTNAME]!",
	"order": "1"
}
												Example request multiple:
[
	{
		"ID": "3473",
		"title": "test title",
		"message": "Hapy birthday [FIRSTNAME]!",
		"order": "1"
	},
	{
		"ID": "3477",
		"title": "test title",
		"message": "Your subscription expires in one week.",
		"order": "2"
	}, ...
]
												Example response single:
{
	"ID": [ {id} ]
}
Example response multiple:
{
	"IDs": [ {id1}, {id2}, ...]
}
 
				 
	