Storyden
Auth

O Auth Client Get

Read an OAuth client created by the authenticated account. Member-created clients are third-party application identities. They may be public or confidential but are never first-party inherited-permission clients.

Read an OAuth client created by the authenticated account.

Member-created clients are third-party application identities. They may be public or confidential but are never first-party inherited-permission clients.

GET/auth/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

application/json

curl -X GET "https://loading/api/auth/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"
  ]
}
{
  "error": "string",
  "error_description": "string"
}
Empty
{
  "error": "string",
  "message": "string",
  "suggested": "string",
  "metadata": {}
}