Returns the list of Sender IDs available to the authenticated user’s account.
Each sender entry includes:
name — the Sender ID valuetype — the Sender ID type:
0 = ComReg Sender ID1 = International non-ComReg approved Sender ID2 = Numeric Sender IDThis endpoint is useful when validating which Sender IDs can be used in campaign requests.
curl --request GET \
--url https://api.interactsms.com/api/v2/senderlist \
--header 'Authorization: Bearer <token>'[
{
"name": "FreeText",
"type": 1
},
{
"name": "353851234567",
"type": 2
},
{
"name": "Phonovation",
"type": 0
}
]Use the Password grant_type flow to get a JWT access token from https://auth.interactsms.com/token. Pass it as a Bearer token in the Authorization header to access the API.
curl --request GET \
--url https://api.interactsms.com/api/v2/senderlist \
--header 'Authorization: Bearer <token>'[
{
"name": "FreeText",
"type": 1
},
{
"name": "353851234567",
"type": 2
},
{
"name": "Phonovation",
"type": 0
}
]