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
Request
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
| Code | Description |
|---|
| 204 | Variables cleared successfully |
| 401 | Unauthorized |
Use Cases
Reset Environment
curl -X DELETE https://sandbox_abc123xyz.hopx.dev/env \
-H "Authorization: Bearer YOUR_JWT_TOKEN"
Next Steps