I am using twilio trial account for sending message and it generate SMS logs. I want to remove all SMS logs from my trial account of twilio. please help me.
Asked
Active
Viewed 786 times
1 Answers
1
You can use the PHP helper library to redact the body of a message, or delete the entire message resource:
$client = new Services_Twilio('AC123', '123');
$message = $client->account->messages->get("MM123");
$message->redact(); // Erases 'Body' field contents
$message->delete(); // Deletes entire message record
More info on deleting message can be found in our docs.
Hope that helps.

Devin Rader
- 10,260
- 1
- 20
- 32
-
What is argument of get() method? – Rupal Jan 30 '16 at 05:24
-
The Sid of the message you want to delete. – Devin Rader Jan 30 '16 at 19:37