curl --request POST \
--url https://api.comm.com/api/v1/sms/routing/routes/smpp-connections/test \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"url": "<string>",
"username": "<string>",
"password": "<string>",
"port": 123,
"dlr_url": "<string>",
"dlr_port": 123,
"workers_count": 5,
"workers_delay": 123,
"system_type": "<string>"
}'
{
"success": true
}
curl --request POST \
--url https://api.comm.com/api/v1/sms/routing/routes/smpp-connections/test \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"url": "<string>",
"username": "<string>",
"password": "<string>",
"port": 123,
"dlr_url": "<string>",
"dlr_port": 123,
"workers_count": 5,
"workers_delay": 123,
"system_type": "<string>"
}'
{
"success": true
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
The response is of type object
.