35114: Scheduling does not support this timestamp
MESSAGING
ERROR
This error occurs when the SendAt value for a scheduled message is outside the supported scheduling window or is not accepted as a valid timestamp. Use an ISO 8601 UTC timestamp, and make sure Twilio receives the request between 15 minutes and 35 days before the scheduled send time.
- The
SendAtvalue is less than 15 minutes in the future when Twilio receives the request. - The
SendAtvalue is more than 35 days in the future. - The
SendAtvalue is not formatted as a valid ISO 8601 UTC timestamp such as2026-05-15T14:30:00Z. - Your application calculates
SendAttoo close to the minimum scheduling window, and the request reaches Twilio after that minimum has passed. - Your application converts the scheduled time incorrectly because of a time zone or UTC formatting issue.
- Format
SendAtas an ISO 8601 timestamp in UTC using the patternYYYY-MM-DDTHH:MM:SSZ. - Update the scheduled time so Twilio receives the request at least 15 minutes before
SendAt. - Update the scheduled time so
SendAtis no more than 35 days in the future. - Add a buffer beyond the minimum window if you are scheduling close to the earliest supported time.
- Generate and validate the timestamp in UTC before you send the API request.