Overview
GET/oauth/signin/authorizeoauth

Central SSO authorize — silent re-login from the central session, else → central login

List authorize.

Parameters
  • clientIdquerystring
  • returnquerystring
Responses
302

redirect to returnUrl with a fresh exchange code, or to the central login page

No response body.

400

Error

  • erroroptionalobject
Example
{
  "error": {
    "message": "string",
    "code": "string"
  }
}
503

Error

  • erroroptionalobject
Example
{
  "error": {
    "message": "string",
    "code": "string"
  }
}
Code examples
cURL
curl -X GET "https://api.agenticdeveloperhub.com/oauth/signin/authorize" \
  -H "Authorization: Bearer YOUR_TOKEN"
JavaScript
const res = await fetch("https://api.agenticdeveloperhub.com/oauth/signin/authorize", {
  method: "GET",
  headers: {
    "Authorization": "Bearer YOUR_TOKEN"
  },
});
const data = await res.json();