This web hook will be called as we receive unsubscribe requests from your recipients.
Query fields
Name | Type | Description |
---|---|---|
message_id | string | Original message ticket |
number | string | Mobile number |
text | string | Text of the response |
stop_date | string | Reception Date in “Y-m-d H:i:s” format |
Simple example of a PHP recovery script
$content = json_decode($response); echo $content['message_id']; // sms_5fa275dbf21dc echo $content['number']; // +33600000000 echo $content['text']; // stop echo $content['stop_date']; // 2020-11-04 11:11:45