Get Environment Preset

Retrieve an Environment Preset

GET https://api.release.com/api/accounts/{account_id}/environment_presets/{environment_preset_id}/presets/{preset_id}

This endpoint retrieves the details of a specific preset within an environment preset, including its state and environment variables.

{
  "id": 789,
  "state": "created",
  "handle": "example-handle",
  "environment_variables": {
    "MY_ENV_VAR": { "value": "asdf", "secret": false },
    "MY_SECRET_ENV_VAR": { "value": "secret", "secret": true }
  }
}

Last updated

Was this helpful?