Sender IDs
Request branded sender IDs and fetch approval status for the authenticated workspace.
Request Sender ID
POST
/v1/sender-ids| Option | Type | Required | Description |
|---|---|---|---|
sender_id | string | yes | Alphanumeric sender ID between 3 and 11 characters. |
usecase | string | yes | What the sender ID will be used for. |
company | string | yes | Company name connected to the sender ID. |
{
"sender_id": "ACME",
"usecase": "Customer transaction alerts",
"company": "Acme Stores"
}List Sender IDs
GET
/v1/sender-ids?status=active{
"data": [
{
"title": "ACME",
"status": "active",
"country": "Nigeria"
}
],
"count": 1
}