Skip to main content
GET
Error

Authorizations

Authorization
string
header
required

Flowyte secret API key (Authorization: Bearer flowyte_sk_live_…). Scope-gated; is scoped to your organization — a key can never reach another tenant. The listed scopes in each operation's apiKey requirement are the scopes that key must hold. The tokenUrl is nominal: keys are minted in the dashboard.

Query Parameters

response_type
enum<string>
required

Must be code (authorization-code grant is the only supported flow).

Available options:
code
client_id
string
required

The registered OAuth client id requesting access.

redirect_uri
string
required

Where to send the browser after consent — must EXACTLY match a URI registered for the client.

scope
string

Space-separated scopes requested; defaults to the client max when omitted.

state
string
required

Opaque CSRF value the client generates and expects echoed back on the redirect.

code_challenge
string

Optional PKCE code challenge (base64url of the SHA-256 of the verifier).

code_challenge_method
enum<string>

PKCE method — S256 only.

Available options:
S256

Response

Redirect to the consent screen (success) or back to redirect_uri with an error.