Delete a previously scheduled SMS

$result = $tmClient->deleteSMS('1234');
echo "Message with ID {$result['scheduled_id']} was {$result['status']}";

Arguments:

 

string $scheduled_id: 

The ID of the scheduled text message, as returned by the sendSMS method.

Returns:

an array with 2 keys: 'scheduled_id', 'status' e.g. $result['scheduled_id']

Array KeyValue
scheduled_id 

String: The unique ID of the scheduled message.

status 

The status of the message, i.e., DELETED.

Specific error codes:

CodeMeaning
35The provided Resource ID is not valid or is malformed.
36

This can have multiple meanings: either 1) the scheduled message id doesn't exist or belongs to other account than the one using the REST API; or 2) the scheduled message has already been sent and, as so, can't be deleted.

 

 

 

 

 

Our example code is an illustration of how you might integrate with our systems and is not certified for production environments. You are responsible for testing and QA.