GET
/
management
/
live-phones
cURL
curl --request GET \
  --url https://api.comm.com/api/management/live-phones \
  --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.

Query Parameters

page
integer | null
per_page
integer | null
search_ids
string<uuid>[]

Response

200
application/json

Array of LivePhoneResource

The response is of type object.