Authorize Info
GET
/oauth/authorize/info
const url = 'https://engine.bindly.insure/oauth/authorize/info?req=example';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://engine.bindly.insure/oauth/authorize/info?req=example'Consent-screen data: WHERE the data would go + the user’s workspaces.
Supabase-JWT guarded (the consent page is behind the Bindly app login). The org list powers the /connect org picker; the redirect host lets the user spot a look-alike client before approving, important since any client can self-register via DCR.
Parameters
Section titled “Parameters”Query Parameters
Section titled “Query Parameters”req
required
Req
string
Responses
Section titled “Responses”Successful Response
Media typeapplication/json
Examplegenerated
exampleValidation Error
Media typeapplication/json
HTTPValidationError
object
detail
Detail
Array<object>
ValidationErrorobject
loc
required
Location
Array
msg
required
Message
string
type
required
Error Type
string
Examplegenerated
{ "detail": [ { "loc": [ "example" ], "msg": "example", "type": "example" } ]}