Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.hopx.ai/llms.txt

Use this file to discover all available pages before exploring further.

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