Company logoTrust Center Documentation
API v1 ReferenceKnowledge baseId

Get Q&A item details

Retrieve a specific knowledge base Q&A item by its ID

GET
/api/v1/knowledge-base/{id}
AuthorizationBearer <token>

JWT token obtained from login endpoint

In: header

Path Parameters

idstring

Q&A item ID

Formatuuid

Response Body

curl -X GET "https://app.orbiqhq.com/api/v1/knowledge-base/497f6eca-6276-4993-bfeb-53cbbbba6f08"
{
  "item": {
    "id": "550e8400-e29b-41d4-a716-446655440000",
    "question": "What security certifications do you have?",
    "answer": "We maintain SOC 2 Type II, ISO 27001, and GDPR compliance certifications.",
    "category": "Security",
    "featured": true,
    "order": 1,
    "created_at": "2024-01-01T00:00:00Z",
    "updated_at": "2024-01-15T12:00:00Z"
  }
}
{
  "error": "Unauthorized"
}
{
  "error": "Q&A item not found"
}
{
  "error": "Internal server error"
}

How is this guide?