List account phone numbers
documentedDiscover phone numbers that belong to the account (and/or extensions).
GET /restapi/v1.0/account/~/phone-numberPhone Numbersno implementation yet0 runsNo implementation yet. Run it to have the agent write one, or open a pull request with your own.
Seed example (keychains curl)
npx -y keychains@latest curl "https://platform.ringcentral.com/restapi/v1.0/account/{{$account_id}}/phone-number" \
-X GET \
-H "Authorization: Bearer {{$oauth2_access_token}}" \
-H "Accept: application/json" \
-H "Content-Type: application/json" \
# Sources: Endpoint documented by RingCentral as GET /restapi/v1.0/account/{accountId}/phone-number (account-level phone numbers); host is platform.ringcentral.com. See RingCentral API docs for Phone Numbers (Get a list of account phone numbers) and sample URIs.
# Base host reference from API call samples (Host: platform.ringcentral.com).