- 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
Toggle Environment Dev Mode
POST
https://api.servebolt.io/v1/environments/{id}/dev-mode
Request
Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.Example:
Authorization: Bearer ********************
Path Params
id
string
required
Header Params
Accept
string
required
Example:
application/json
Content-Type
string
required
Example:
application/json
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 POST 'https://api.servebolt.io/v1/environments//dev-mode' \
--header 'Accept: application/json' \
--header 'Content-Type: application/json'
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": "string",
"type": "string",
"attributes": {
"title": "string",
"enabled": true,
"hostname": "string",
"ip": "string",
"internalName": "string",
"internalUrl": "string",
"phpVersion": "string",
"phpExtensions": [
"string"
],
"phpWorkers": {
"max": 0,
"nice": 0,
"maxRequests": 0
},
"domains": [
"string"
],
"state": "string",
"storage": {
"used": null,
"total": 0
},
"git": {
"repodef": "string",
"autopull": true,
"branch": "string",
"commit": null,
"last_trigger": "string",
"last_status": true,
"last_message": "string"
},
"location": "string",
"devMode": true,
"apikey": "string",
"isLegacy": true,
"cloudflareLock": true,
"cacheMode": "string",
"phpMemoryLimit": 0,
"htaccessRoot": "string",
"ssh": true,
"sftp": true,
"phpTimezone": "string"
},
"relationships": {
"bolt": {
"data": {
"id": "string",
"type": "string",
"attributes": {
"internalName": "string"
}
}
}
},
"links": {
"self": "string"
}
}
}
Modified at 2024-05-30 14:29:24