### Example Request ###
curl -X POST https://partner.enterprisetelecom.com/api/quote/services \
-H "Authorization: bebd6b78-20d4-452f-a60a-d95ed57b20da:SFh2AT_jlxtRzOtTa8CZ6w"
OR
curl -X POST https://partner.enterprisetelecom.com/api/quote/services \
-H "Content-Type: application/json" \
--data '{ "client_id": "bebd6b78-20d4-452f-a60a-d95ed57b20da", "api_key": "SFh2AT_jlxtRzOtTa8CZ6w"}'
### Example Response ###
{
"services": [
{
"id": "10", # the id to use for the quotes request
"title": "Satellite",
"description": "Satellite High-Speed Internet",
"phone_required": false
},
{
"id": "9",
"title": "Ethernet (Copper)",
"description": "Ethernet (Copper)",
"phone_required": true
},
....
}
| 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 |