Skip to main content
POST
/
oauth
/
authorize
Submit the OAuth consent decision (Allow / Deny)
curl --request POST \
  --url https://api.mnemom.ai/v1/oauth/authorize \
  --header 'Content-Type: application/x-www-form-urlencoded' \
  --data 'client_id=<string>' \
  --data 'redirect_uri=<string>' \
  --data 'code_challenge=<string>' \
  --data 'scope=<string>' \
  --data 'org_id=<string>' \
  --data 'csrf=<string>' \
  --data 'state=<string>' \
  --data code_challenge_method=S256 \
  --data response_type=code
"<string>"

Body

application/x-www-form-urlencoded
decision
enum<string>
required
Available options:
allow,
deny
client_id
string
required
redirect_uri
string<uri>
required
code_challenge
string
required
scope
string
required
org_id
string
required
csrf
string
required
state
string
code_challenge_method
enum<string>
Available options:
S256
response_type
enum<string>
Available options:
code

Response

Redirect back to the client with code+state, or with an OAuth error.