GET
/
management
/
voice
/
provider-accounts
cURL
curl --request GET \
  --url https://api.comm.com/api/management/voice/provider-accounts \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "<string>",
      "username": "<string>",
      "name": "<string>",
      "meta": [
        "<any>"
      ],
      "is_active": "<string>",
      "created_at": "2023-11-07T05:31:56Z",
      "updated_at": "2023-11-07T05:31:56Z",
      "deleted_at": "2023-11-07T05:31:56Z",
      "concurrency_limit": 123,
      "is_personal": "<string>",
      "numbers_count": 123
    }
  ]
}

Authorizations

Authorization
string
header
required

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

Response

Array of VoiceProviderResource

data
VoiceProviderResource · object[]
required