curl --request GET \
--url https://api.studio.prisme.ai/oidc/authconst options = {method: 'GET'};
fetch('https://api.studio.prisme.ai/oidc/auth', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.studio.prisme.ai/oidc/auth"
response = requests.get(url)
print(response.text){}OAuth 2.0 Authorization Endpoint
Standard OpenID Connect authorization endpoint (authorization code + PKCE). Documented here only so the endpoint appears in the contract — do not build the request by hand and do not call it through a generated client: use a certified OAuth2/OIDC library (https://oauth.net/code/) and let it read the parameters from GET /oidc/.well-known/openid-configuration. Redirects to the sign-in front-end when an interaction (login, MFA or consent) is required, then back to the client’s redirect_uri with an authorization code.
curl --request GET \
--url https://api.studio.prisme.ai/oidc/authconst options = {method: 'GET'};
fetch('https://api.studio.prisme.ai/oidc/auth', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.studio.prisme.ai/oidc/auth"
response = requests.get(url)
print(response.text){}Query Parameters
Prisme.ai-specific, and the only parameter of this endpoint that OIDC discovery does not describe. Two-letter language prefixed to the sign-in path when an interaction is required (/{locale}/signin). The SDK sends the browser language by default.
Response
Redirect to the sign-in front-end or back to the client redirect_uri
Was this page helpful?