Storyden
Admin

Admin O Auth Refresh Token List

List OAuth refresh tokens. Refresh tokens are account-owned grants for an OAuth client. Revoking a refresh token prevents future token renewal, but does not immediately invalidate already-issued JWT access tokens.

List OAuth refresh tokens.

Refresh tokens are account-owned grants for an OAuth client. Revoking a refresh token prevents future token renewal, but does not immediately invalidate already-issued JWT access tokens.

GET/admin/oauth/refresh-tokens
storyden-session<token>

In: cookie

Response Body

application/json

application/json

curl -X GET "https://loading/api/admin/oauth/refresh-tokens"
{
  "tokens": [
    {
      "id": "cc5lnd2s1s4652adtu50",
      "createdAt": "2019-08-24T14:15:22Z",
      "oauth_client_id": "cc5lnd2s1s4652adtu50",
      "client_id": "string",
      "client_name": "string",
      "account_id": "cc5lnd2s1s4652adtu50",
      "scope": "string",
      "expires_at": "2019-08-24T14:15:22Z",
      "revoked_at": "2019-08-24T14:15:22Z",
      "replaced_by_token_id": "cc5lnd2s1s4652adtu50",
      "last_used_at": "2019-08-24T14:15:22Z"
    }
  ]
}
Empty
{
  "error": "string",
  "message": "string",
  "suggested": "string",
  "metadata": {}
}