environments.unlock
POST
/environments/{environmentId}/unlock
const url = 'https://example.com/api/environments/example/unlock';const options = {method: 'POST'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request POST \ --url https://example.com/api/environments/example/unlockUnlocks one environment so mutable work can resume. Public docs: /docs/environments/model/#environment-lifecycle
Parameters
Section titled “ Parameters ”Path Parameters
Section titled “Path Parameters ” environmentId
required
string
Responses
Section titled “ Responses ”OK
Media type application/json
object
id
required
string
Example generated
{ "id": "example"}