Developer's Guide

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

Knowledge Base groups

Update

Update a knowledge base group

PUT https://api.deskero.com/knowledgeGroup/update/{{knowledgeGroupId}}

Headers

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

Example request

$ curl https://api.deskero.com/knowledgeGroup/update/52b423c3e4b04b021e45b660 \ 
  -v \
  -H "Content-group: application/json" \
  -H "Authorization: Bearer 58cfg61g-1585-5c72-g35f-7fe76893ed2f" \
  -H "clientId: 51f01687e4b094c81d7b8bcdellef" \
  -X PUT \
  -d '{
    "group": "24/7 Support",
    "visibility": "AGENT_GROUPS",
    "agentGroups" : [
      {
        "id": "52bd5c0de4b084c4b57bfe9a"
      }
    ]
  }'

Example response

Updated knowledge base group id

{
  "id": "52b423c3e4b04b021e45b660"
}