GET
/
management
/
live-phones
/
{livePhone}
cURL
curl --request GET \
  --url https://api.comm.com/api/management/live-phones/{livePhone} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "id": "<string>",
    "phone_number": 123,
    "country_id": 123,
    "network_id": 123,
    "is_active": true,
    "last_used_at": "<string>",
    "used_count": 123,
    "created_at": "2023-11-07T05:31:56Z",
    "updated_at": "2023-11-07T05:31:56Z",
    "deleted_at": "2023-11-07T05:31:56Z",
    "network_brand_id": "<string>",
    "email": "<string>"
  }
}

Authorizations

Authorization
string
header
required

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

Path Parameters

livePhone
string<uuid>
required

The live phone ID

Response

200
application/json

LivePhoneResource

The response is of type object.