Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
curl --request GET \
--url https://api.comm.com/api/v1/sms/routing/sms-tests/dashboard \
--header 'Authorization: Bearer <token>'
{
"success": true,
"data": [
{
"date": "<string>",
"country_id": "<string>",
"total": 123,
"pending_count": 123,
"expired_count": 123,
"received_count": 123
}
]
}
curl --request GET \
--url https://api.comm.com/api/v1/sms/routing/sms-tests/dashboard \
--header 'Authorization: Bearer <token>'
{
"success": true,
"data": [
{
"date": "<string>",
"country_id": "<string>",
"total": 123,
"pending_count": 123,
"expired_count": 123,
"received_count": 123
}
]
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.