Terms and Conditions
Get Terms and Conditions
GET /internetAccess/v1/terms | |
---|---|
Method | GET |
Endpoint | /internetAccess/v1/terms |
Headers | Authorization |
Path Parameters | Not applicable |
Query Parameters | account.accountNumber, location.ibx, connectivitySource.type, product, type, language, offset, limit |
Body Parameters | Not applicable |
This API request returns service terms and conditions.
Ordering Equinix Internet Access service instance using the Create Equinix Internet Access Service API request means that you have read and accepted the terms and conditions returned by this endpoint.
Sample curl request
Copy
curl -X GET 'https://api.equinix.com/internetAccess/v1/terms?account.accountNumber=123456&location.ibx=DC5&connectivitySource.type=COLO&product=IA_C'
-H 'authorization: Bearer qwErtY8zyW1abcdefGHI'
Query parameters
Parameter
|
Description |
---|---|
account.accountNumber string REQUIRED |
Account number. Applicable values: Use the Get Accounts API request to retrieve accounts that are available for Equinix Internet Access ordering in a given IBX data center. Example: 123456 |
location.ibx string REQUIRED |
IBX data center identifier. Applicable values: Use the Get IBX Data Centers API request to retrieve IBX data centers where Equinix Internet Access is available. Example: DC5 |
offset integer OPTIONAL |
Index of the first item returned in the response. Default: 0 |
limit integer OPTIONAL |
Maximum number of items returned per page. Default: 50 |
connectivitySource.type string REQUIRED |
Connectivity source type. Applicable values: COLO |
product string REQUIRED |
Name of product. Applicable values:
|
type string OPTIONAL |
Agreement type. Applicable values:
|
language string OPTIONAL |
2-letter language code in ISO 639-1 standard. Default: en |
Sample response
Copy
{
"pagination": {
"offset": 0,
"limit": 50,
"total": 1
},
"data": [
{
"text": "<html>\r\n\t<head>\r\n\t</head>\r\n\t\r\n\t<body>\r\n\t\r\n\t\t<div>\r\n\t\t\tVersion: February 14, 2022[...]</html>",
"version": "a2Z7i000000BgLaEAK",
"location": {
"ibx": "DC5"
},
"account": {
"accountNumber": "123456"
},
"connectivitySource": {
"type": "COLO"
},
"type": "TERMS_AND_CONDITIONS",
"product": "IA_C",
"language": "en"
}
]
}
Response payload body description
Parameter
|
Description |
---|---|
pagination
object |
Data set pagination information. |
offset
integer |
Index of the first item returned in the response. |
limit
integer |
Maximum number of items returned per page. |
total
integer |
Total number of items. |
data
array[object] |
Data set containing terms and conditions. |
text
string |
Terms and conditions in HTML format. |
version
string |
Terms and conditions revision. Example: a2Z7i000000BgLaEAK |
location
object |
Location information where the terms and conditions apply. |
ibx
string |
IBX data center identifier. Example: DC5 |
account
object |
Customer account information. |
accountNumber
string |
Customer account number. Example: 123456 |
connectivitySource
object |
Source of connectivity. |
type
string |
Source connection endpoint. Possible values:
|
type
string |
Agreement type. Possible values:
|
product
string |
Name of product. Possible values:
|
language
string |
2-letter language code in ISO 639-1 standard. Default: en |