Skip to main content
Remove all custom environment variables from the sandbox. System environment variables may be preserved.
This removes ALL custom environment variables. This operation cannot be undone.

Endpoint

DELETE /env

Request

Headers

Authorization: Bearer YOUR_JWT_TOKEN

Example Request

curl -X DELETE https://sandbox_abc123xyz.hopx.dev/env \
  -H "Authorization: Bearer YOUR_JWT_TOKEN"

Response

Success (204 No Content)

Empty response on success.

Status Codes

CodeDescription
204Variables cleared successfully
401Unauthorized

Use Cases

Reset Environment

curl -X DELETE https://sandbox_abc123xyz.hopx.dev/env \
  -H "Authorization: Bearer YOUR_JWT_TOKEN"

Next Steps