Storyden
Admin

Admin O Auth Client List

List OAuth clients registered for this instance. This admin view includes both member-created third-party clients and built-in first-party clients. Built-in clients will not be owned by an account; their grants and refresh tokens are owned by the approving account instead.

List OAuth clients registered for this instance.

This admin view includes both member-created third-party clients and built-in first-party clients. Built-in clients will not be owned by an account; their grants and refresh tokens are owned by the approving account instead.

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

In: cookie

Response Body

application/json

application/json

curl -X GET "https://loading/api/admin/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": {}
}