GET
/
v1
/
hub
/
endpoints
/
{endpoint}
cURL
curl --request GET \
  --url https://api.comm.com/api/v1/hub/endpoints/{endpoint} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "id": "<string>",
    "name": "<string>",
    "username": "<string>",
    "password": "<string>",
    "client_company_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "sms_routing_plan_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "default_route_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "pricing_update_email": "jsmith@example.com",
    "allowed_ips": [],
    "tags": [],
    "tx": 1,
    "rx": 1,
    "trx": 1,
    "is_sending_allowed": true,
    "max_price": 0,
    "is_max_price_enabled": false,
    "min_margin": 123,
    "active_connections": {
      "tx": 123,
      "rx": 123,
      "trx": 123
    }
  }
}

Authorizations

Authorization
string
header
required

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

Path Parameters

endpoint
string<uuid>
required

The endpoint ID

Response

200
application/json

SellerEndpointData

The response is of type object.