Skip to main content
Infrastructure/Federation & SSO
POSTFederationSince 1.0SynchronousAuth RequiredRecently Added

OpenSSOSession

Trade a user JWT for a passwordless redirect URL on the target platform.

Execution Availability

Try It Out

Submit a mock request using the current auth context and example-driven inputs.

Path Parameters

Request Inputs

Path Parameters

  • platformIdStringRequired

    Target platform UUID — must reference a connected ah_tianchi platform.

Body Fields

  • jwtStringRequired

    User session JWT to validate against the remote SSO endpoint.

    Example: eyJhbGciOiJSUzI1NiJ9...

Responses

200 OK

On success, this API returns the following response structure.

  • ssoUrlString

    Passwordless redirect URL on the target platform. Host validated.

    Example: https://172.26.105.251/sso/redirect?token=...

Endpoint

POST/api/v1/federation/platforms/{platformId}/sso/login

/api/v1/federation/platforms/{platformId}/sso/login

Operation ID

OpenSSOSession

Permalink

Request Example

curl -X POST '{host}/api/v1/federation/platforms/{platformId}/sso/login' -H 'Authorization: Bearer {token}' -H 'Content-Type: application/json' -d '{"jwt":"{userJwt}"}'

Response Example

200
{"ssoUrl": "https://172.26.105.251/sso/redirect?token=..."}

Change History

This API has no change history records yet.

View all change history