Auth
Authorize
Begin the OAuth flow. This endpoint is used to redirect the user to the authorization URL, and will return an authorization code.
GET
/
auth
/
authorize
Query Parameters
response_type
enum<string>
requiredThe response type. Must be 'code' for the authorization code flow.
Available options:
code
client_id
string
requiredThe client identifier.
redirect_uri
string
requiredThe URI to redirect to after authorization.
scope
string
The scope of the access request.
state
string
An opaque value used to maintain state between the request and callback.