curl --request POST \
--url https://api.archera.ai/oauth/authorize \
--header 'x-api-key: <api-key>'{
"code": 123,
"status": "<string>",
"message": "<string>",
"errors": {}
}Query Parameters: All OAuth params from GET (client_id, redirect_uri, state, etc.)
Form Parameters: confirm: ‘yes’ to authorize, ‘no’ to deny
Returns: Redirect to client with authorization code or error
curl --request POST \
--url https://api.archera.ai/oauth/authorize \
--header 'x-api-key: <api-key>'{
"code": 123,
"status": "<string>",
"message": "<string>",
"errors": {}
}API key for authentication. Get your key from User Settings > API Access in the Archera platform.
Was this page helpful?