OAuth2
Authorize
Redirects the user to the Hyperline’s login page, and grants authorization to your integration.
GET
/
v1
/
oauth
/
authorize
Query Parameters
client_id
string
requiredApplication's client ID.
audience
string
Identifier of the target API. Should be left empty by default.
scope
string
A space-separated list of permissions your app requires. Should be left empty by default.
response_type
enum<string>
requiredAvailable options:
code
redirect_uri
string
requiredThe URL to which Hyperline will redirect the browser after authorization has been granted by the user. It must match one of the callback URL you set when registering your app.
state
string
requiredA random string generated by your app to prevent CSRF attacks. This value will be included in the query parameter when redirecting to the redirect_uri
after authorizing your app.
Was this page helpful?