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.
/admin/oauth/refresh-tokensIn: 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"
}
]
}{
"error": "string",
"message": "string",
"suggested": "string",
"metadata": {}
}Admin O Auth Refresh Token Delete DELETE
Revoke an OAuth refresh token. This prevents future refresh-token use. Because Storyden OAuth access tokens are JWTs, any access token already issued from this grant remains valid until its normal expiry.
Admin Settings Get GET
Retrieve all configuration settings for installation. This includes the publicly accessible information for the instance as well as admin-only access to sensitive configuration (environment variables) and settings.