Resume authorization after sign-in
GET
/v1/oauth/authorize/resume
const url = 'https://api.adversarial.com/api/v1/oauth/authorize/resume';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.adversarial.com/api/v1/oauth/authorize/resumeRe-entry after the user completes OIDC login. The pending request is read from the session and the user is sent to the consent page.
Responses
Section titled “Responses”Redirect to consent, or onboarding for an orgless session
No pending authorize request in session
Not logged in