Managed Auth
Exchange handoff code for JWT
Validates the handoff code and returns a JWT token for subsequent requests. Used by the hosted login UI.
post/auth/connections/{id}/exchange
Path parameters
idstring required
Auth connection ID
Request body
Example request
{
"code": "abc123xyz"
}Response
Exchange successful, JWT returned
Example response
{
"invocation_id": "abc123xyz",
"jwt": "eyJ0eXAi..."
}