{ "opencollection": "1.0.0", "info": { "name": "Kinde Account API Keys OAuth API", "version": "1" }, "items": [ { "info": { "name": "OAuth", "type": "folder" }, "items": [ { "info": { "name": "Get user profile", "type": "http" }, "http": { "method": "GET", "url": "{{baseUrl}}/oauth2/v2/user_profile", "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "docs": "This endpoint returns a user's ID, names, profile picture URL and email of the currently logged in user.\n" }, { "info": { "name": "Introspect", "type": "http" }, "http": { "method": "POST", "url": "{{baseUrl}}/oauth2/introspect", "body": { "type": "form-urlencoded", "data": [ { "name": "token", "value": "" }, { "name": "token_type_hint", "value": "" } ] }, "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "docs": "Retrieve information about the provided token." }, { "info": { "name": "Revoke token", "type": "http" }, "http": { "method": "POST", "url": "{{baseUrl}}/oauth2/revoke", "body": { "type": "form-urlencoded", "data": [ { "name": "client_id", "value": "" }, { "name": "client_secret", "value": "" }, { "name": "token", "value": "" }, { "name": "token_type_hint", "value": "" } ] }, "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "docs": "Use this endpoint to invalidate an access or refresh token. The token will no longer be valid for use." } ] } ], "bundled": true }