Sign Up
HomeGuidesVerbsAPI ReferenceClient SDKsTutorialsChangelog
HomeGuidesVerbsAPI ReferenceClient SDKsTutorialsChangelog
    • Introduction
  • REST Call Control
  • REST Platform Management
  • Webhooks
    • GETNew Call
    • POSTNew Call
    • POSTClient Authentication
    • POSTNew Client Tool Request
  • Websocket API
Sign Up
LogoLogo
REST Platform ManagementCall Routing

GET
https://api.jambonz.cloud/v1/LcrCarrierSetEntries
GET
/v1/LcrCarrierSetEntries
1import requests
2
3url = "https://api.jambonz.cloud/v1/LcrCarrierSetEntries"
4
5headers = {"Authorization": "Bearer <token>"}
6
7response = requests.get(url, headers=headers)
8
9print(response.json())
Try it
1[
2 {
3 "lcr_route_sid": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
4 "voip_carrier_sid": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
5 "priority": 1,
6 "workload": 90
7 }
8]
Was this page helpful?
Previous

create a Least Cost Routing Carrier Set Entry

Next
Built with
list least cost routings routes

Authentication

AuthorizationBearer

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

Response

list of least cost routing carrier set entries
lcr_route_sidstring
voip_carrier_sidstring
priorityinteger
workloadinteger or null
traffic distribution value

Errors