Retrieve a list of all your registered Sender IDs along with their status. Note: This API requires X-API-VASKEY in the header for authentication.
POST https://api.moolre.com/open/sms/status
To test in sandbox, use https://sandbox.moolre.com/open/sms/status instead.
| Parameter | Type | Required | Description |
|---|---|---|---|
type | integer | Yes | ID of the list sender IDs function. Must be 7. |
List of Sender IDs returned.
{
"status": 1,
"code": "ASMQ08",
"message": "List of Your Sender IDs.",
"data": [
{
"id": 13,
"senderid": "SmartSMS",
"approval": "Approved",
"whitelisted": false
},
{
"id": 14,
"senderid": "Dummy",
"approval": "Pending",
"whitelisted": false
},
{
"id": 15,
"senderid": "Dymmy ID",
"approval": "Pending",
"whitelisted": false
},
{
"id": 4010,
"senderid": "Momo",
"approval": "Rejected",
"whitelisted": false
}
],
"go": null
}