πŸ“˜ NOTE

You would need to register a sender ID with the endpoint mentioned below. All messages sent before then will be delivered with the default sender ID

Register your Sender ID with this endpoint, you will get an email once it has been approved, all messages sent before then will be delivered with the default sender ID

Request

[POST]
{{baseUrl}}api/v1/messaging/sender_id

Body parameter

ParameterTypeDescription
sender_idstringSender ID you wish to register, should be less than 11 Characters

πŸ“˜ Sender ID

Kindly Note that you can only register your sender Id on production only.

Sample response

Response
{
  "entity": {
    "message": "Sender ID Request Successful, you will get an email once its Activated."
  }
}

Fetch Sender IDs

Fetch the list of all your Sender IDs

Request

[GET]
{{baseUrl}}api/v1/messaging/sender_ids

Sample response

Response
{
    "entity": [
        {
            "sender_id": "Dojah",
            "activated": true,
            "createdAt": "2020-10-30T09:54:17.145Z"
        }
    ]
}