Storyden
Admin

Admin O Auth Client Get

Read an OAuth client. OAuth clients represent application/software identity. They are not the same thing as a user authorisation; user-owned authorisations are represented by device authorisations, authorisation requests, and refresh tokens.

Read an OAuth client.

OAuth clients represent application/software identity. They are not the same thing as a user authorisation; user-owned authorisations are represented by device authorisations, authorisation requests, and refresh tokens.

GET/admin/oauth/clients/{oauth_client_id}
storyden-session<token>

In: cookie

Path Parameters

oauth_client_id*string

OAuth client ID.

Formatxid

Response Body

application/json

application/json

curl -X GET "https://loading/api/admin/oauth/clients/cc5lnd2s1s4652adtu50"
{
  "id": "cc5lnd2s1s4652adtu50",
  "createdAt": "2019-08-24T14:15:22Z",
  "updatedAt": "2019-08-24T14:15:22Z",
  "account_id": "cc5lnd2s1s4652adtu50",
  "client_id": "string",
  "name": "string",
  "type": "public",
  "scope_policy": "explicit",
  "redirect_uris": [
    "http://example.com"
  ],
  "allowed_scopes": [
    "string"
  ],
  "allowed_grants": [
    "string"
  ]
}
Empty
Empty
{
  "error": "string",
  "message": "string",
  "suggested": "string",
  "metadata": {}
}