Sender ID Status API

Check the approval status of a Sender ID. 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 sender ID status function. Must be 1.
senderidstringYesSender ID to check.

Response Examples

200 (Success) - Success

Sender ID is Approved.

{
  "status": 1,
  "code": "ASMQ01",
  "message": "Sender ID Status",
  "data": {
    "senderid": "SmartSMS",
    "approval": "Approved",
    "whitelisted": false
  },
  "go": null
}

200 (Pending) - Pending

Sender ID is Pending approval.

{
  "status": 1,
  "code": "ASMQ01",
  "message": "Sender ID Status",
  "data": {
    "senderid": "Dummy",
    "approval": "Pending",
    "whitelisted": false
  },
  "go": null
}

200 (Rejected) - Rejected

Sender ID is Rejected.

{
  "status": 1,
  "code": "ASMQ01",
  "message": "Sender ID Status",
  "data": {
    "senderid": "Momo",
    "approval": "Rejected",
    "whitelisted": false
  },
  "go": null
}

← Back to AI Documentation Index | View Full API Reference