List Sender IDs API
List all registered Sender IDs and their approval status.
# 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
- **Method**: POST
- **URL**: https://api.moolre.com/open/sms/status
## Headers
| Header | Type | Required | Description |
| :--- | :--- | :--- | :--- |
| X-API-VASKEY | string | Yes | Your SMS API VAS key. |
## Request Body
| Parameter | Type | Required | Description |
| :--- | :--- | :--- | :--- |
| type | integer | Yes | ID of the list sender IDs function. Must be 7. |
## Response (200 Success)
List of Sender IDs returned.
```json
{
"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
}
```