curl --silent --show-error --fail-with-body --request DELETE \
--url 'https://api.sandbox.stateset.app/api/v1/sandbox/{id}/files' \
--header "Authorization: ApiKey $STATESET_SANDBOX_API_KEY" \
--header 'Content-Type: application/json' \
--data '{
"path": "/workspace/example.txt",
"recursive": false
}'
{
"success": true,
"path": "string"
}
Delete a file or directory from the sandbox
File or directory deleted
DELETE
/
api
/
v1
/
sandbox
/
{id}
/
files
curl --silent --show-error --fail-with-body --request DELETE \
--url 'https://api.sandbox.stateset.app/api/v1/sandbox/{id}/files' \
--header "Authorization: ApiKey $STATESET_SANDBOX_API_KEY" \
--header 'Content-Type: application/json' \
--data '{
"path": "/workspace/example.txt",
"recursive": false
}'
{
"success": true,
"path": "string"
}
Confirm your deployment before running this request. This page describes an API contract;
a published reference does not establish hosted availability. Check the dated
host report and obtain your deployment URL and credentials.
Replace the example host if your provisioned service uses a different URL.
Path parameters
string (uuid)
required
Sandbox identifier
Request body
DeleteFileRequest
string
required
Absolute path within /workspace. Must not contain .., NUL, carriage return, tab, or newline. Minimum length:
1. Maximum length: 4096.boolean
Default:
false.Response
object
boolean
required
string
required
Path that was deleted.
Status codes
| Code | Meaning |
|---|---|
200 | File or directory deleted |
404 | Sandbox not found |
Using this contract
Read the source OpenAPI document for declared schemas and alternatives. This page also includes documented corrections from the spec overlays. Example IDs and values are illustrative; replace them with records from your workspace.curl --silent --show-error --fail-with-body --request DELETE \
--url 'https://api.sandbox.stateset.app/api/v1/sandbox/{id}/files' \
--header "Authorization: ApiKey $STATESET_SANDBOX_API_KEY" \
--header 'Content-Type: application/json' \
--data '{
"path": "/workspace/example.txt",
"recursive": false
}'
{
"success": true,
"path": "string"
}
Last modified on September 21, 2026