Schedule List
To list scheduled SMS
List all the sms schedule
Authorizations
Query parameters
pageintegerOptionalExample:
Page number
1
filter[sender_name]stringOptionalExample:
Filter by sender id name
DUCKSMS
filter[type]string · enumOptionalExample:
Filter by sms type
quick
Possible values: filter[message_type]string · enumOptionalExample:
Filter by sms message type
ascii
Possible values: filter[status]string · enumOptionalExample:
Filter by sms status
pending
Possible values: Responses
200
List all the sms schedule
application/json
400
Invalid request
application/json
401
Unauthenticated
application/json
404
No data found
application/json
500
Server error
application/json
get
GET /api/v1/sms/scheduled HTTP/1.1
Host: ducksms.com
Authorization: Bearer JWT
Accept: */*
{
"status": 200,
"message": "The sms scheduled return successfully",
"data": [
{
"smsid": "59961854",
"type": "quick",
"scheduled_at": "2022-12-04 13:41:00",
"sender_name": "DUCKSMS",
"message": "Hello World",
"recipients": 1,
"status": "completed",
"created_at": "2022-12-03 13:40:30",
"updated_at": "2022-12-03 13:46:20"
},
{
"smsid": "1636438975",
"type": "quick",
"scheduled_at": "2022-12-03 12:34:00",
"sender_name": "MYCOMPANY",
"message": "Hi john",
"recipients": 1,
"status": "cancelled",
"created_at": "2022-12-03 12:32:42",
"updated_at": "2022-12-03 12:32:46"
}
]
}
Last updated