Outbound SMS and MMS can be scheduled to be sent in the future with the
POST /v2/messages endpoint or the POST /v2/messages/schedule endpoint.
Making a Request
The fieldsend_at must be set as an ISO 8601 formatted datetime string, e.g. “2019-01-23T18:30:00Z”, and cannot be less than 5 minutes or more than 5 days in the future. The actual scheduling time is accurate up till a minute.
Retrieving a scheduled message
TheGET /v2/messages/:id endpoint can be used to retrieve a scheduled message.
Canceling a scheduled message
TheDELETE /v2/messages/:id endpoint can be used to cancel a scheduled message. Only messages with status=scheduled and send_at more than a minute from now can be cancelled.