List Sender IDs API

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.

Endpoint Information

POST https://api.moolre.com/open/sms/status

To test in sandbox, use https://sandbox.moolre.com/open/sms/status instead.

Request Parameters

ParameterTypeRequiredDescription
typeintegerYesID of the list sender IDs function. Must be 7.

Response Examples

200 - Success

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
}

← Back to AI Documentation Index | View Full API Reference