Skip to main content
POST
/
v1
/
oauth
/
authorize
/
deny
Deny an OAuth authorization request
curl --request POST \
  --url https://api.leanrails.com/v1/oauth/authorize/deny \
  --header 'Authorization: Basic <encoded-value>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "redirect_uri": "<string>",
  "state": "<string>"
}
'
{
  "redirect_url": "<string>"
}

Documentation Index

Fetch the complete documentation index at: https://docs.fluveo.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Use your secret API key as the username with an empty password.

Headers

X-API-Version
string

Override the API version for this request.

Body

application/json
redirect_uri
string<uri>
required

Redirect URI to send the denial to.

state
string

Opaque state parameter to pass through.

Response

Denial response.

redirect_url
string<uri>
required

The URL with error=access_denied.