Storyden
Auth

O Auth Client List

List OAuth clients created by the authenticated account. This is the member-facing "apps I created" view. OAuth clients are application definitions: client ID, client type, redirect URIs, allowed scopes, and allowed grants. This does not list built-in first-party clients or third-party apps the member has merely authorised. Use `/auth/oauth/tokens` for the "apps I have authorised" view.

List OAuth clients created by the authenticated account.

This is the member-facing "apps I created" view. OAuth clients are application definitions: client ID, client type, redirect URIs, allowed scopes, and allowed grants.

This does not list built-in first-party clients or third-party apps the member has merely authorised. Use /auth/oauth/tokens for the "apps I have authorised" view.

GET/auth/oauth/clients
storyden-session<token>

In: cookie

Response Body

application/json

application/json

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