Start the browser authorization flow
GET
/oauth/authorize
const url = 'https://api.hedgespecialty.com/api/v1/oauth/authorize';const options = {method: 'GET'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url https://api.hedgespecialty.com/api/v1/oauth/authorizeRFC 6749 authorization endpoint, PKCE (S256) required. Redirects the broker to the portal consent screen; on approval the browser returns to your redirect_uri with a single-use code for /oauth/token. Use the device flow instead for headless or CLI contexts.
Responses
Section titled “Responses”Redirect to the consent screen
Unknown client or invalid redirect_uri