AT&T Alliance APIs

Get started with Quick Quote API

In this section, you’ll learn how to make your first authenticated Alliance API request and examine the response data.

1

Access

For access to the Quick Quote APIs, Solution Providers are requested to contact the APS API Services Team at DL-APS_API_Services@att.com. Upon reaching out, you will be guided through a process to sign a necessary agreement. Following this, Solution Providers will be provided with a unique Client ID and Client Secret. These credentials are crucial for authorization and subsequent access to the APIs.”

2

Security credentials

Once the credentials are provided, they should be included within the Header sections of any API requests. This is crucial to authorize your requests’ access. Here’s an example:

1
2
--header 'client_id: "Contact APS API Services Team for Client ID"' 
--header 'client_secret: "Contact APS API Services Team for Client secret"'
3

Sample Request

Example of a Quick Quote API which helps Solution Provider to obtain pricing and promotional information for multiple sites, with one product configuration per site based on the request ID that's created by SP .

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
[
    {
        "requestId": "IGLOO Response Test",
        "addressId": "cde0640bda5",
        "productId": "OFF_ADI_MID_MARKET",
        "configuration": {
            "features": [
                {
                    "value": "100M",
                    "name": "Port Speed",
                    "code": "ATT_SPEED"
                },
                {
                    "value": "100M",
                    "name": "Access Speed",
                    "code": "ATT_ACC_SPD"
                },
                {
                    "value": "100Base-TXElectrical",
                    "name": "Interface",
                    "code": "ATT_INTERFACE"
                },
                {
                    "value": "AT&T Managed",
                    "name": "Management Option",
                    "code": "ATT_ROUTER_OPTN"
                },
                {
                    "value": "Yes",
                    "name": "AT&T Default Router",
                    "code": "ATT_STT_DEF_ROUTER"
                },
                {
                    "value": "36",
                    "name": "Term",
                    "code": "VEPC_ATTR_CONTRACT_TERM"
                },
                {
                    "value": "Flat Rate",
                    "name": "Billing Option",
                    "code": "ATT_BILL_OPT"
                }
            ]
        }
    },
    {
        "address": {
            "addressLine1": "111 S WACKER DR",
            "country": "US",
            "postalCodeExtension": "4302",
            "province": "IL",
            "city": "Chicago",
            "postalCode": "60606"
        },
        "dmaCode": "dmaCode",
        "usGeoData": {
            "locator": "EGM",
            "swclli": "CHCGILFR",
            "ilecVendor": "AMERITECH ILLINOIS",
            "npanxx": "312201",
            "horizontalCoordinate": "03245",
            "serviceLongitude": -87.636436,
            "matchIndicator": "S80",
            "standardAddress": "111 S WACKER DR,CHICAGO,IL,60606-4302",
            "serviceLatitude": 41.88008,
            "verticalCoordinate": "05984",
            "requestTime": "2023-10-03T08:22:13.415Z",
            "matchScore": "890",
            "lataCode": "358",
            "geoTransactionId": "0717200132452275322359048",
            "matchLevel": "Street",
            "acceptAddrTime": "2023-11-02T08:22:13.415Z",
            "matchStatus": "M",
            "territoryIndicator": "O",
            "responseTime": "2023-10-03T08:22:13.415Z"
        },
        "productId": "OFF_ADI_MID_MARKET",
        "configuration": {
            "features": [
                {
                    "value": "100M",
                    "name": "Port Speed",
                    "code": "ATT_SPEED"
                },
                {
                    "value": "100M",
                    "name": "Access Speed",
                    "code": "ATT_ACC_SPD"
                },
                {
                    "value": "100Base-TXElectrical",
                    "name": "Interface",
                    "code": "ATT_INTERFACE"
                },
                {
                    "value": "AT&T Managed",
                    "name": "Management Option",
                    "code": "ATT_ROUTER_OPTN"
                },
                {
                    "value": "Yes",
                    "name": "AT&T Default Router",
                    "code": "ATT_STT_DEF_ROUTER"
                },
                {
                    "value": "36",
                    "name": "Term",
                    "code": "VEPC_ATTR_CONTRACT_TERM"
                },
                {
                    "value": "Flat Rate",
                    "name": "Billing Option",
                    "code": "ATT_BILL_OPT"
                }
            ]
        }
    }
]
4

Associated Response

Below is the associated response for the request sent

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
[
    {
        "requestId": "IGLOO Response Test",
        "addressId": "cde0640bda5",
        "productId": "OFF_ADI_MID_MARKET",
        "configId": "8177f45",
        "configName": "ADI500M",
        "createdAt": "2024-04-25T08:14:53.758Z",
        "lastUpdatedAt": "2024-04-29T08:30:37.37Z",
        "expirationDate": "2024-05-25T06:57:51.515Z",
        "status": "Success",
        "configuration": {
            "features": [
                {
                    "value": "100M",
                    "name": "Port Speed",
                    "code": "ATT_SPEED"
                },
                {
                    "value": "100M",
                    "name": "Access Speed",
                    "code": "ATT_ACC_SPD"
                },
                {
                    "value": "100Base-TXElectrical",
                    "name": "Interface",
                    "code": "ATT_INTERFACE"
                },
                {
                    "value": "AT&T Managed",
                    "name": "Management Option",
                    "code": "ATT_ROUTER_OPTN"
                },
                {
                    "value": "Yes",
                    "name": "AT&T Default Router",
                    "code": "ATT_STT_DEF_ROUTER"
                },
                {
                    "value": "36",
                    "name": "Term",
                    "code": "VEPC_ATTR_CONTRACT_TERM"
                },
                {
                    "value": "Flat Rate",
                    "name": "Billing Option",
                    "code": "ATT_BILL_OPT"
                }
            ]
        },
        "pricing": {
            "pricingParts": [
                {
                    "discountEditable": "Y",
                    "name": "Port",
                    "order": "1",
                    "value": "PRD_PORT_MM",
                    "baseMrc": "$4325",
                    "baseNrc": "$0",
                    "discountApplied": "94%",
                    "discountMax": "94%",
                    "discountMin": "40%",
                    "mrc": "$259.50",
                    "nrc": "$0",
                    "priceId": "8177f45-PRD_PORT_MM"
                },
                {
                    "priceId": "8177f45-PRD_ACCESS",
                    "name": "Access",
                    "value": "PRD_ACCESS",
                    "baseMrc": "$925",
                    "baseNrc": "$0",
                    "discountApplied": "0%",
                    "discountMin": "0%",
                    "discountMax": "0%",
                    "discountEditable": "N",
                    "mrc": "$925",
                    "nrc": "$0",
                    "order": "2"
                },
                {
                    "discountEditable": "N",
                    "name": "Install",
                    "order": "3",
                    "value": "PRD_ADI_INSTALL",
                    "baseMrc": "$0",
                    "baseNrc": "$1500",
                    "discountApplied": "100%",
                    "discountMax": "100%",
                    "discountMin": "100%",
                    "mrc": "$0",
                    "nrc": "$0",
                    "priceId": "8177f45-PRD_ADI_INSTALL"
                }
            ],
            "accessVendor": "BELLSOUTH",
            "selectedPromo": [],
            "locationTotal": {
                "mrc": "$1184.50",
                "nrc": "$0"
            },
            "availablePromotions": []
        },
        "accessPricingAdditionalDetail": {
            "customerName": "",
            "address": {
                "addressLine1": "200 S BISCAYNE BLVD",
                "city": "MIAMI",
                "postalCode": "33131",
                "postalCodeExtension": "2310",
                "province": "FL",
                "countryIso": "United States"
            },
            "latitude": 25.772231,
            "longitude": -80.18752,
            "npanxx": "305536",
            "visibilityType": "3",
            "probBuildDesc": "IF THE SELECTED VENDOR IS WINDSTREAM KDL OR XCHANGE THE ETHERNET ACCESS WILL BE PROVIDED VIA A FIXED WIRELESS SOLUTION",
            "probBuildWithRes": "FWRLS",
            "matchStatus": "M",
            "matchLevel": "Street",
            "matchScore": "890",
            "accessArrangement": "Total Service",
            "bandwidthQuote": {
                "ethernetTokenId": "ETH2022LOZ",
                "errorMessage": "",
                "discountPercentage": 0,
                "quoteRequestDate": "04/29/2024",
                "pricingTier": "0",
                "billableMileage": 0.0,
                "swcToSwcMileage": 24.0,
                "pricingZone": "2A",
                "serviceGuideEligible": "True",
                "customerPrefVendors": [
                    {
                        "preferredVendorName": {}
                    }
                ],
                "customerAvoidedVendors": [
                    {
                        "avoidedVendorName": {}
                    }
                ],
                "accessSupplier": {
                    "ituCode": "5181",
                    "pmtu": "1500",
                    "supplierName": "BELLSOUTH",
                    "mtuSupportMessage": "",
                    "leadTime": -1,
                    "node": {
                        "clli": "FTLDFLOV",
                        "localCurrency": "USD",
                        "swclli": "FTLDFLOV",
                        "quoteExpirationDate": "07/28/2024",
                        "coverageIndicator": "Found-Firm",
                        "quoteQualifiedAsRequested": "True",
                        "bandwidthMet": "Yes",
                        "architectureMet": "Yes",
                        "vendorPreferenceRequested": false,
                        "serialNumber": "68914638S",
                        "rulesDerivedMessage": "Filter Vendor based on calculated final VSI, select one with lowest",
                        "providerProductName": "OEM-AC",
                        "quoteDaysTtl": 90,
                        "usClecDisplays": [
                            {}
                        ],
                        "contractTerm": {
                            "oneTimePriceUsd": 0.0,
                            "baseMonthlyPriceLocal": 925.0,
                            "baseMonthlyPriceUsd": 925.0,
                            "monthlyPriceLocal": 925.0,
                            "monthlyPriceUsd": 925.0,
                            "contractDuration": "36",
                            "oneTimePriceLocal": 0.0
                        }
                    }
                },
                "ethernetIoc": "NO",
                "availability": "Yes",
                "productDesignDetails": {
                    "service": "MIS",
                    "accessTransport": "Ethernet",
                    "accessArchitecture": "Switched",
                    "accessTechnology": "Ethernet",
                    "accessTail": "ESP ETH Shared",
                    "accessInterconnectTechnology": "Gateway Interconnect",
                    "cmtu": "1500",
                    "portLevelCos": "No",
                    "accessSpeed": "500mbps",
                    "accessSpeedRequested": "500mbps",
                    "accessArchitectureRequested": "Switched",
                    "physicalInterface": "1000BaseLX Optical SMF",
                    "onnetCheck": "No",
                    "zone": "Eth LC SW Zone2A BLS Select SWC"
                }
            },
            "responseMessage": "response"
        }
    }
]