Skip to content

Commit

Permalink
Update SendAt param in twilio_api_v2010.json
Browse files Browse the repository at this point in the history
The description of Schedule misused send_time instead of SendAt which is the correct API param. Additionally, SendAt param was missing in the code examples. The change fixes the two.
  • Loading branch information
yj-tu authored Jan 7, 2025
1 parent 08b58e7 commit 5faa82a
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions spec/json/twilio_api_v2010.json
Original file line number Diff line number Diff line change
Expand Up @@ -27108,7 +27108,7 @@
"ScheduleType": {
"type": "string",
"$ref": "#/components/schemas/message_enum_schedule_type",
"description": "For Messaging Services only: Include this parameter with a value of `fixed` in conjuction with the `send_time` parameter in order to [schedule a Message](https://www.twilio.com/docs/messaging/features/message-scheduling)."
"description": "For Messaging Services only: Include this parameter with a value of `fixed` in conjuction with the `SendAt` parameter in order to [schedule a Message](https://www.twilio.com/docs/messaging/features/message-scheduling)."
},
"SendAt": {
"type": "string",
Expand Down Expand Up @@ -27232,6 +27232,7 @@
"Body": "Hello! \ud83d\udc4d",
"MessagingServiceSid": "MGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
"ScheduleType": "fixed",
"SendAt":"2024-10-10T15:00:00Z",
"StatusCallback": "https://example.com",
"To": "+15558675310"
}
Expand All @@ -27244,6 +27245,7 @@
],
"MessagingServiceSid": "MGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
"ScheduleType": "fixed",
"SendAt":"2024-10-10T15:00:00Z",
"StatusCallback": "https://example.com",
"To": "+15558675310"
}
Expand All @@ -27253,6 +27255,7 @@
"Body": "Hello! \ud83d\udc4d",
"MessagingServiceSid": "MGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
"ScheduleType": "fixed",
"SendAt":"2024-10-10T15:00:00Z",
"StatusCallback": "https://example.com",
"To": "94287277+15558675310"
}
Expand Down Expand Up @@ -48048,4 +48051,4 @@
"accountSid_authToken": []
}
]
}
}

0 comments on commit 5faa82a

Please sign in to comment.