### Example Request ###
curl -X GET https://partner.enterprisetelecom.com/api/quote/d071cd43-436f-4f41-a5ad-274f58296e04 \
-H "Authorization: bebd6b78-20d4-452f-a60a-d95ed57b20da:SFh2AT_jlxtRzOtTa8CZ6w"
OR
curl -X GET https://partner.enterprisetelecom.com/api/quote/d071cd43-436f-4f41-a5ad-274f58296e04?client_id=1999ba30-7f53-4e01-a784-2440df76e958&api_key=SFh2AT_jlxtRzOtTa8CZ6w
### Example Response ###
# Returns 204 status code if it's not complete.
{
"quote_id": "d071cd43-436f-4f41-a5ad-274f58296e04", # the identifier for the quote
"products": [
{
"service_id": "1"
"description": "4G LTE Wireless - 1 GB", # Name of the service
"bandwidth_up": 5120, # Bandwidth Downstream
"bandwidth_down": 15360, # Bandwidth Upstream
"price_includes_router": true, # false if router charge is extra
"contract_period": 3, # Contract term in number of months
"monthly_recurring_charge": 10.5, # Monthly charge
"installation_charge": 0,
"installation_rebate": 0,
"network": "BroadSky", # Name of the network supplier
"supplier": "Broad Sky Networks", # Name of the supplier
"is_estimate": false,
"details": [ # Additional details for the product. Some may also be an explanation of the values above.
{
"name": "Service Details",
"value": "4G LTE Wireless - 1 GB",
"description": ""
},
{
"name": "Term",
"value": "3 Year",
"description": "This is the term of this contract, which is renewable upon completion. Many service providers offer significant discounts for longer term commitments."
},
{
"name": "Total",
"value": "$79.95",
"description": "This is the total amount of Monthly Recurring Charges, including LOOP and PORT fees. This price is good through the end of June, 2018."
},
.....
]
},
]
}
| Param name | Description |
|---|---|
| client_id |
API Credential. *Required if Authorization header is not passed in. |
| api_key |
API Credential. *Required if Authorization header is not passed in. |
| Header name | Description |
|---|---|
|
Authorization required |
Auth header in the format ${client_id}:${api_key} E.g. bebd6b78-20d4-452f-a60a-d95ed57b20da:SFh2AT_jlxtRzOtTa8CZ6w |