Skip to content

Instantly share code, notes, and snippets.

@MohsinAQ
MohsinAQ / Request_Body
Created December 1, 2021 15:49
Schedule Review text (SMS) message for a new group
{
"To": [
"+123112344","+187265156920","+1456792082"
],
"ReviewText": "Type your message here",
"GooglePlaceId": "336EB60A-38FD-453E-A7DC-7F54A34F4E3D", //placeId
"ScheduledDate": "12/1/2021",
"ScheduledTime": "3:45 PM",
"ReplySTOPToOptOut": true
}
@MohsinAQ
MohsinAQ / Request_Body
Created December 1, 2021 15:45
Schedule Review text (SMS) message for a new contact
{
"ContactName": "John",
"ContactNumber": "+1234577521",
"ReviewText": "Type your message here",
"GooglePlaceId": "336EB60A-38FD-453E-A7DC-7F54A34F4E3D", //placeId
"ScheduledDate": "12/1/2021",
"ScheduledTime": "3:45 PM",
"ReplySTOPToOptOut": true
}
@MohsinAQ
MohsinAQ / Request_Body
Created December 1, 2021 15:39
Schedule text (SMS) message for a new contact
{
"ContactName": "John",
"ContactNumber": "+122331122872",
"Message": "Type Your Message here",
"ScheduledDate": "12/1/2021",
"ScheduledTime": "3:42 PM",
"ReplySTOPToOptOut": true
}
@MohsinAQ
MohsinAQ / Request_Body
Created December 1, 2021 15:35
Send text (SMS) message event reminder to a new contact
{
"ContactName": "John",
"ContactNumber": "+123467182",
"ReminderText": "Type your message here",
"EventDate": "12/2/2021",
"Day": 1,
"Time": "3:35 PM",
"ReplySTOPToOptOut": true
}
@MohsinAQ
MohsinAQ / Request_Body
Created December 1, 2021 15:29
Send review text (SMS) message to a new contact
{
"ContactName": "john",
"ContactNumber": "+12346788652",
"ReviewText": "Type your message here",
"PlaceId": "336EB60A-38FD-453E-A7DC-7F54A34F4E3D",
"ReplySTOPToOptOut": true
}
@MohsinAQ
MohsinAQ / Request_Body
Created December 1, 2021 15:26
Send text (SMS) message to a new contact
{
"ContactName": "John",
"ContactNumber": "+1211211211211",
"Message": "Type your message here",
"ReplySTOPToOptOut": true
}
@MohsinAQ
MohsinAQ / Request_Body
Last active February 10, 2022 08:46
Send text (SMS) message to a number
{
"To": "+18277251717",
"Body": "Type your message here",
"ReplySTOPToOptOut": true
}
@MohsinAQ
MohsinAQ / Request_Body
Created December 1, 2021 15:13
Send text (SMS) message to a new group
{
"To": [
"+1232112123232","+1222728182191"
],
"Body": "type your message here",
"GroupName": "Demo Group",
"ReplySTOPToOptOut": true
}
@MohsinAQ
MohsinAQ / Request_Body
Created December 1, 2021 15:07
Create a new Contact
{
"Phone": "+123456782",
"Name": "ABC"
}
@MohsinAQ
MohsinAQ / Request_Body
Created December 1, 2021 15:02
Schedule review text (SMS) message for multiple groups
{
"GroupName": [
"D278558B-DC19-48EE-8402-F864D11437CC","4AD32EF6-8E6B-408A-BCB8-F0D0A8E821A8" //groupIDs
],
"Body": "Type your message here",
"GooglePlaceId": "336EB60A-38FD-453E-A7DC-7F54A34F4E3D",
"ScheduledDate": "12/1/2021",
"ScheduledTime": "2:55 PM",
"ReplySTOPToOptOut": true
}