Delete document
DELETE/documents/docs/:path
Removes a single document at path. Does not cascade to nested paths. Requires client.documents permission.
Request
Responses
- 200
- 400
- 401
- 403
- 404
- 422
Successful Response
Bad Request
Unauthorized
Forbidden
Not Found
Validation Error
Response shape
{
"deleted": "players/42/progress"
}
Does not cascade to documents under nested paths.
cURL example
curl -X DELETE "https://mw-client-api.wonderfulcoast-218d579d.centralindia.azurecontainerapps.io/documents/docs/players/42/progress" \
-H "x-client-id: <client-id>" \
-H "x-client-secret: <client-secret>" \
-H "Authorization: Bearer <access-token>"