NairaSMS
/

Sender IDs

Request branded sender IDs and fetch approval status for the authenticated workspace.

Request Sender ID

POST/v1/sender-ids
OptionTypeRequiredDescription
sender_idstringyesAlphanumeric sender ID between 3 and 11 characters.
usecasestringyesWhat the sender ID will be used for.
companystringyesCompany 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
}