AUTH
Obtain the access token list by providing the client ID
Only Admin Permission can access this information.
Available in 7.1.1 or later
Input Parameters
Type | Notation | Mandatory | Description | |
clientId | String | <hash> | optional | Client ID. If this field is absent, all access token will be obtained. |
Return Parameters
Return JSON
Type | Notation | Description |
Array | <Access_Token_Obj> | List of Access Token information |
<Access_Token_Obj>
Type | Notation | Description | |
accessToken | String | <hash> | Access token |
clientId | String | <hash> | Client ID |
clientName | String | <string> | Client Name |
authorizationType | Number | { 3 } | Authorization type. Always get 3 for client credentials grant |
scope | String | { api, api.read-only } | The scope of the access token |
createTimestamp | Number | <number> | Issued date in timestamp |
cURL Example
{ "stat": "ok", "response": [ { "accessToken": "43c65216eb16d779092fc40b184a1794", "clientId": "0396c250111dcaef02058007bb72217e", "clientName": "Client 1", "authorizationType": 3, "scope": "api.read-only", "createTimestamp": 32177831 } ] }