Developer's Guide

Learn how to configure and use our open APIs, to
freely integrate Deskero with any other software solution!

Knowledge Base areas

Create

Create a new knowledge base area

POST https://api.deskero.com/knowledgeArea/insert

Headers

Header Value
Authorization Bearer {{bearer}}
Content-Type application/json
clientId {{clientId}}

Example request

$ curl https://api.deskero.com/knowledgeArea/insert \ 
  -v \
  -H "Content-area: application/json" \
  -H "Authorization: Bearer 58cfg61g-1585-5c72-g35f-7fe76893ed2f" \
  -H "clientId: 51f01687e4b094c81d7b8bcdellef" \
  -X POST \
  -d '{
    "area": "Sign in",
    "groupId": "52b423c3e4b04b021e45b660"
  }'

Example response

Created knowledge base area id

{
  "id": "51cd8af3e4b0e90b324ab778"
}