Skip to main content
GET
/
auth
/
{id}
/
{provider}
/
callback
OAuth / SAML callback
curl --request GET \
  --url http://localhost:3010/auth/{id}/{provider}/callback
{
  "Status": "error",
  "Error": "Profile not found"
}

Path Parameters

id
string
required

The unique identifier of the authentication profile.

provider
string
required

The provider sub-path. For Social/OIDC providers this is the Goth provider name (e.g. github, linkedin, openid-connect). For SAML it is saml. For LDAP/Proxy it matches the configured provider identifier.

Query Parameters

code
string

OAuth 2.0 authorization code (OAuth flows only).

state
string

OAuth 2.0 state parameter for CSRF protection.

Response

Redirect to ReturnURL after successful authentication and action.