Re-authenticate the Brokerage Session (Deprecated)

View as MarkdownOpen in Claude

When using the CP Gateway, this endpoint provides a way to reauthenticate to the Brokerage system as long as there is a valid brokerage session.

All interest in reauthenticating the gateway session should be handled using the /iserver/auth/ssodh/init endpoint.

POST /iserver/reauthenticate

Request Object

No params or body content should be sent.

1request_url = f"{baseUrl}/iserver/reauthenticate"
2json_content = {}
3requests.post(url=request_url, json=json_content )

Response Object

message: String.
Returns “triggered” to indicate the response was sent.

{
"message": "triggered"
}