v1

latestOpenAPI 3.0.02026-07-263365201.7 KB
Authentication

Authorize

Create an authorized session

get/oauth/authorize

Query parameters

response_type'code' required

The response type, must be 'code' for authorization code flow

Example:code

The response type, must be 'code' for authorization code flow

client_idstring required

The client identifier issued to the client during registration

Example:client_12345

The client identifier issued to the client during registration

redirect_uristring uri required

The URI to redirect to after authorization is complete

Example:https://your-app.com/callback

The URI to redirect to after authorization is complete

scopestring
statestring

Optional value used by the client to maintain state between request and callback

Example:xcoiv98sj3coijs

Optional value used by the client to maintain state between request and callback

code_challengestring

PKCE code challenge derived from the code verifier

Example:E9Melhoa2OwvFrEMTJguCHaoeK1t8URWbuGJSstw-cM

PKCE code challenge derived from the code verifier

code_challenge_method'S256' | 'plain'

Method used to derive the code challenge, either 'S256' or 'plain'

Example:S256

Method used to derive the code challenge, either 'S256' or 'plain'

flow_type'login' | 'signup'

If you want to use Nomos as identity provider, you can support a login or signup flow via explicitly setting this parameter. In contrast to the default, the login options skips the consent screen. The signup options allows your users to create a new customer without a subscription attached to it, and therefore register an account.

Example:login

If you want to use Nomos as identity provider, you can support a login or signup flow via explicitly setting this parameter. In contrast to the default, the login options skips the consent screen. The signup options allows your users to create a new customer without a subscription attached to it, and therefore register an account.

All 33 operations