Company logoTrust Center Documentation
API v1 ReferenceKnowledge baseId

Delete Q&A item

Permanently delete a knowledge base Q&A item

DELETE
/api/v1/knowledge-base/{id}

Authorization

bearerAuth
AuthorizationBearer <token>

JWT token obtained from login endpoint

In: header

Path Parameters

id*string

Q&A item ID

Formatuuid

Response Body

application/json

application/json

application/json

application/json

application/json

curl -X DELETE "https://app.orbiqhq.com/api/v1/knowledge-base/550e8400-e29b-41d4-a716-446655440000"
{
  "success": true,
  "data": {
    "id": "550e8400-e29b-41d4-a716-446655440000"
  }
}
{
  "success": false,
  "error": "The knowledge base ID provided is not valid."
}
{
  "error": "Unauthorized"
}
{
  "error": "Q&A item not found"
}
{
  "error": "Internal server error"
}

How is this guide?