DELETE
/
documents
/
{id}
curl --request DELETE \
  --url https://api.reqlick.com/documents/{id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "slug": "<string>"
}'
{
  "error": false
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
string
required

Document ID

Body

application/json
slug
string

Workspace URL

Response

200
application/json
Document deleted successfully
error
boolean
Example:

false