AUTH
Get the authentication client list.
Only Admin Permission can access this information.
Available in 7.1.1 or later
Return Parameters
Return JSON | Type | Notation | Description |
– | Array | list of <Client_Obj> | List of the auth client. |
<Client_Obj> | Type | Notation | Description |
name | String | <string> | Name of the client |
clientId | String | <hash> | Client ID for granting the access token |
clientSecret | String | <hash> | Client Secret for granting the access token |
confidential | Boolean | <boolean> | Confidential or public client type |
createTimestamp | Number | <number> | Create timestamp of the client |
scope | String | { api, api.read-only } | The scope of the client |
cURL Example
> curl -b cookies.txt http://192.168.1.1/api/auth.client
{ "stat": "ok", "response": [ { "name": "Client 1", "clientId": "9270c250111cabab02058007bb72217e", "clientSecret": "cf5fe1c51252a058ebd6bd7d5f493cf5", "Confidential": false, "createTimestamp": 32172904, "scope": "api.read-only" } ] }