1import requests23url = "https://api.jambonz.cloud/v1/LcrCarrierSetEntries"45headers = {"Authorization": "Bearer <token>"}67response = requests.get(url, headers=headers)89print(response.json())
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": 907 }8]
Bearer authentication of the form Bearer <token>, where token is your auth token.
Bearer <token>