List Locations
GET
/v1/locationsList all the available datacenters where you can create bolts. You can also find the list of all available PHP versions in each location.
Request
Header Params
Accept
string
required
Example:
application/json
Content-Type
string
required
Example:
application/json
Request samples
Responses
OK(200)
HTTP Code: 200
Content Type : JSONapplication/json
Data Schema
data
array [object {3}]
required
id
integer
required
type
string
required
attributes
object
required
Example
{
"data": [
{
"id": 4170,
"type": "locations",
"attributes": {
"country": "NO",
"countryFull": "Norge",
"location": "Oslo",
"phpVersions": [
"7.4",
"8.3",
"8.2",
"8.1",
"8.0"
]
}
},
{
"id": 4410,
"type": "locations",
"attributes": {
"country": "US",
"countryFull": "United States",
"location": "New York, NY",
"phpVersions": [
"7.4"
]
}
}
]
}
Last modified: 6 months ago