Skip to content

Dixa API (beta)

Download OpenAPI description
Languages
Servers
Mock server
https://docs.dixa.io/_mock/openapi/dixa-api/beta
https://dev.dixa.io

Analytics

Operations

Agents

Operations

End Users

Operations

Chatbots

Operations

Anonymization

Operations

Custom Attributes

Operations

Teams

Operations

Conversations

Operations

Messages

Operations

Internal Notes

Operations

Ratings

Operations

Tags

Operations

Queues

Operations

Contact Endpoints

Operations

Webhooks

Operations

Templates

Operations

Business Hours

Operations

Knowledge

Operations

Get collection

Request

Get a knowledge collection by id

Security
ApiKeyAuth
Path
collectionIdstring(uuid)required
curl -i -X GET \
  'https://docs.dixa.io/_mock/openapi/dixa-api/beta/beta/knowledge/collections/{collectionId}' \
  -H 'Authorization: YOUR_API_KEY_HERE'

Responses

The knowledge collection

Bodyapplication/json
dataobject(Collection)required
data.​idstringrequired
data.​titlestringrequired
data.​descriptionstring
data.​internalKbEnabledbooleanrequired
data.​restrictionsobject(Restrictions)required
data.​restrictions.​isRestrictedbooleanrequired
data.​restrictions.​inheritedRestrictionsArray of objects(InheritedRestriction)
Response
application/json
{ "data": { "id": "78dfb531-2e1e-4ffc-bd18-fdad68cd2419", "title": "Test Collection", "description": "This is a test collection", "internalKbEnabled": true, "restrictions": {} } }

Get collection catalog

Request

Get collection catalog, including all categories and articles

Security
ApiKeyAuth
Path
collectionIdstring(uuid)required
Query
languagestring

Language in which the article translations will be returned. If not provided, the default language will be used.

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'

Responses

The knowledge collection catalog

Bodyapplication/json
dataobject(CollectionCatalogItem)required
data.​categoriesArray of objects(CategoryCatalogItem)
data.​articlesArray of objects(ArticleCatalogItem)
Response
application/json
{ "data": { "categories": [], "articles": [] } }

Get category

Request

Get a knowledge category by id

Security
ApiKeyAuth
Path
categoryIdstring(uuid)required
Query
languagestring

Language in which the article translations will be returned. If not provided, the default language will be used.

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'

Responses

The category

Bodyapplication/json
dataobject(Category)required
data.​idstringrequired
data.​titleobject(TranslationTitle)
data.​isDefaultLocationboolean
data.​isLockedbooleanrequired
data.​restrictionsobject(Restrictions)required
data.​restrictions.​isRestrictedbooleanrequired
data.​restrictions.​inheritedRestrictionsArray of objects(InheritedRestriction)
data.​parentCategorystring
data.​parentCollectionsArray of strings
Response
application/json
{ "data": { "id": "123e4567-e89b-12d3-a456-426614174000", "title": {}, "isDefaultLocation": true, "isLocked": false, "restrictions": {}, "parentCategory": "222e4567-e89b-12d3-a456-426614174111", "parentCollections": [] } }

Organization

Operations