# 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
`POST https://api.moolre.com/open/sms/status`

## Request Parameters
| Name | Type | Required | Description |
| :--- | :--- | :--- | :--- |
| type | integer | Yes | ID of the list sender IDs function. Must be 7. |

## Responses
### 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
}
```

