Get a knowledge collection by id
Dixa API (beta)
Download OpenAPI description
Languages
Servers
Mock server
https://docs.dixa.io/_mock/openapi/dixa-api/beta
https://dev.dixa.io
- Mock serverhttps://docs.dixa.io/_mock/openapi/dixa-api/beta/beta/knowledge/collections/{collectionId}
- https://dev.dixa.io/beta/knowledge/collections/{collectionId}
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://docs.dixa.io/_mock/openapi/dixa-api/beta/beta/knowledge/collections/{collectionId}' \
-H 'Authorization: YOUR_API_KEY_HERE'Response
application/json
{ "data": { "id": "78dfb531-2e1e-4ffc-bd18-fdad68cd2419", "title": "Test Collection", "description": "This is a test collection", "internalKbEnabled": true, "restrictions": { … } } }
- Mock serverhttps://docs.dixa.io/_mock/openapi/dixa-api/beta/beta/knowledge/collections/{collectionId}/catalog
- https://dev.dixa.io/beta/knowledge/collections/{collectionId}/catalog
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://docs.dixa.io/_mock/openapi/dixa-api/beta/beta/knowledge/collections/{collectionId}/catalog?language=string' \
-H 'Authorization: YOUR_API_KEY_HERE'Response
application/json
{ "data": { "categories": [ … ], "articles": [ … ] } }
- Mock serverhttps://docs.dixa.io/_mock/openapi/dixa-api/beta/beta/knowledge/categories/{categoryId}
- https://dev.dixa.io/beta/knowledge/categories/{categoryId}
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://docs.dixa.io/_mock/openapi/dixa-api/beta/beta/knowledge/categories/{categoryId}?language=string' \
-H 'Authorization: YOUR_API_KEY_HERE'Response
application/json
{ "data": { "id": "123e4567-e89b-12d3-a456-426614174000", "title": { … }, "isDefaultLocation": true, "isLocked": false, "restrictions": { … }, "parentCategory": "222e4567-e89b-12d3-a456-426614174111", "parentCollections": [ … ] } }