Developer's Guide

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

Authentication

GET https://api.deskero.com/oauth/token?grant_type=client_credentials

Headers

Header Value
Authorization Basic {{apiToken}}

URL parameters

Field name Value Required Default
grant_type client_credentials true

Example request

$ curl https://api.deskero.com/oauth/token?grant_type=client_credentials \ 
	-v \
	-H "Accept: application/json" \
	-H "Authorization: Basic NTIyNkHsRvGlHQTyMDZlNjA8GHDkMDE87mMyYGCkADI5LME7MzEtHBFiZC1iUHfrLTJlKNAoMWQ7GFBhIG"

Example response

{
	"access_token": "58cfg61g-1585-5c72-g35f-7fe76893ed2f",
	"token_type": "bearer",
	"expires_in": 1398616,
	"scope": "trust write read"
}