Deliveries
List Deliveries GET /deliveries
List all subscribers and query for subscribers. Includes all subscribers with query
value in either first name, last name, number, email, or custom subscriber fields and with filters
values in respective categories.
undefined
Authorizations
Query parameters
Responses
200
Success
application/json
Responseall of
400
BadRequestError
application/json
401
UnauthorizedError
application/json
403
ForbiddenError
application/json
500
InternalServerError
application/json
get
GET /v3/deliveries HTTP/1.1
Host: api.mobile-text-alerts.com
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
{
"success": true,
"error": "text",
"message": "text",
"data": {
"rows": [
{
"messageId": 1,
"externalId": "text",
"message": "text",
"attachment": "text",
"status": "sent",
"date": "text",
"carrier": "text",
"to": "text",
"from": "text",
"type": "sms"
}
],
"page": 1,
"pageSize": 1,
"total": 1
}
}
Last updated
Was this helpful?