Get Environment Available Settings
GET
/v1/environments/{id}/available-settingsGets all the available settings that can be updated about an environment.
Request
Path Params
id
string
required
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
object
required
id
integer
required
type
string
required
attributes
object
required
Example
{
"data": {
"id": 1785,
"type": "environment_available_settings",
"attributes": {
"phpVersions": [
"7.4.33",
"7.4.30"
],
"phpMemoryLimit": 256,
"phpMemoryLimitOptions": {
"128": true,
"256": true,
"512": false,
"768": false,
"1024": false
},
"phpExtensions": [],
"isLegacy": true
}
}
}
Last modified: 7 months ago