- Introduction
- Auth
- Bolts
- Environments
- Git
- Domains
- Logs
- List EnvironmentsGET
- Create EnvironmentPOST
- Get EnvironmentGET
- Update EnvironmentPATCH
- Delete EnvironmentDELETE
- Purge Environment CachePOST
- List Environment CronjobsGET
- Get Environment StatisticsGET
- Get Environment Available SettingsGET
- Get Environment PHP VersionsGET
- Get Environment UsageGET
- Get Environment SSH AccessesGET
- Create Environment SSH AccessPOST
- Remove Environment SSH AccessDELETE
- List Environment DatabasesGET
- Toggle Environment Dev ModePOST
- Environment Install WordpressPOST
- Environment Optimize WordpressPOST
- Locations
- Databases
- Cronjobs
- SSH Keys
- Certificates
- Billing
- Profile
Get Environment
GET
https://api.servebolt.io/v1/environments/{environmentId}
Request
Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.Example:
Authorization: Bearer ********************
Path Params
environmentId
string
required
Request samples
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://api.servebolt.io/v1/environments/'
Responses
🟢200OK
application/json
Body
data
object
required
id
string
required
type
string
required
attributes
object
required
relationships
object
required
links
object
required
Example
{
"data": {
"id": "1803",
"type": "environments",
"attributes": {
"title": "new awesome environment",
"enabled": true,
"hostname": "xxx",
"ip": "185.91.65.158",
"internalName": "newawe_1803",
"internalUrl": "newawe-1803.xxx",
"phpVersion": "8.3",
"phpExtensions": [],
"phpWorkers": {
"max": 128,
"nice": 18,
"maxRequests": 500
},
"domains": [],
"state": "development",
"storage": {
"used": null,
"total": 4096
},
"location": "Oslo, NO",
"devMode": false,
"apikey": "xxx",
"isLegacy": false,
"cloudflareLock": false,
"cacheMode": "static",
"phpMemoryLimit": 128,
"htaccessRoot": "public",
"ssh": true,
"sftp": true,
"phpTimezone": "UTC"
},
"relationships": {
"bolt": {
"data": {
"id": "8988",
"type": "bolts",
"attributes": {
"internalName": "wefwef_8988"
}
}
}
},
"links": {
"self": "https://xxx/v1/environments/1803"
}
}
}
Modified at 2024-07-17 09:36:05