GET
/
v1
/
sms
/
routing
/
routes
/
smpp-connections
/
{smpp_connection}
/
view
cURL
curl --request GET \
  --url https://api.comm.com/api/v1/sms/routing/routes/smpp-connections/{smpp_connection}/view \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "id": "<string>",
    "url": "<string>",
    "username": "<string>",
    "password": "<string>",
    "port": "<string>",
    "dlr_url": "<string>",
    "dlr_port": "<string>",
    "workers_count": 123,
    "workers_delay": "<string>",
    "system_type": "<string>",
    "created_at": "2023-11-07T05:31:56Z",
    "type": "SMPP"
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

smpp_connection
string<uuid>
required

The smpp connection ID

Response

200
application/json

SmsRouteSmppConnectionResource

The response is of type object.