Changelog
Fetch Sender ID
An endpoint that allows you to fetch the list of all your Sender IDs
GET
/
api
/
v1
/
messaging
/
sender_ids
curl --request GET \
--url https://api.dojah.io/api/v1/messaging/sender_ids \
--header 'AppId: <appid>' \
--header 'Authorization: <api-key>'
{
"entity": [
{
"sender_id": "Dojaher",
"activated": false,
"createdAt": "2021-09-08T14:21:17.867Z"
},
{
"sender_id": "Dojaher",
"activated": false,
"createdAt": "2021-10-07T07:09:55.179Z"
},
{
"sender_id": "wale",
"activated": false,
"createdAt": "2021-10-07T20:52:05.242Z"
}
]
}
Application ID from dashboard
RESPONSES
json
{
"entity": [
{
"sender_id": "Dojaher",
"activated": false,
"createdAt": "2021-09-08T14:21:17.867Z"
},
{
"sender_id": "Dojaher",
"activated": false,
"createdAt": "2021-10-07T07:09:55.179Z"
},
{
"sender_id": "wale",
"activated": false,
"createdAt": "2021-10-07T20:52:05.242Z"
}
]
}
Was this page helpful?
curl --request GET \
--url https://api.dojah.io/api/v1/messaging/sender_ids \
--header 'AppId: <appid>' \
--header 'Authorization: <api-key>'
{
"entity": [
{
"sender_id": "Dojaher",
"activated": false,
"createdAt": "2021-09-08T14:21:17.867Z"
},
{
"sender_id": "Dojaher",
"activated": false,
"createdAt": "2021-10-07T07:09:55.179Z"
},
{
"sender_id": "wale",
"activated": false,
"createdAt": "2021-10-07T20:52:05.242Z"
}
]
}