Generate Grant Token

GET https://accounts.zoho.com/oauth/v2/auth?client_id={{client_id}}&response_type={{client_secret}}&redirect_uri={{redirect_uri}}&scope={{scope}}

Step 2: Authorization Request

To authenticate your application, you need to redirect the user of the client application to the suitable authorization endpoint. On successful login, Zoho Desk will call your redirect URI along with an authorization code (Grant Token).

Request Params

KeyDatatypeRequiredDescription
client_idstringClient ID generated after registering the client.
response_typestringcode
redirect_uristringRedirect URI mentioned while registering the client.
scopestringThe various scopes associated with Zoho Desk.You can use the list of scopes as per your requirement
access_typestring"offline"/"online". In cases where refresh tokens can't be stored, use online access_type. The default will be online
statestringState is an opaque value used by the client to maintain state between the request and callback.