Confirm RP-Initiated Logout
curl --request POST \
--url https://api.studio.prisme.ai/oidc/session/end/confirm \
--header 'Content-Type: application/x-www-form-urlencoded' \
--data 'xsrf=<string>'const options = {
method: 'POST',
headers: {'Content-Type': 'application/x-www-form-urlencoded'},
body: new URLSearchParams({xsrf: '<string>'})
};
fetch('https://api.studio.prisme.ai/oidc/session/end/confirm', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.studio.prisme.ai/oidc/session/end/confirm"
payload = { "xsrf": "<string>" }
headers = {"Content-Type": "application/x-www-form-urlencoded"}
response = requests.post(url, data=payload, headers=headers)
print(response.text)OIDC
Confirm RP-Initiated Logout
Second leg of the logout flow, always traversed: GET /oidc/session/end renders a page whose script auto-submits a form to this endpoint, which is what actually terminates the session before redirecting to post_logout_redirect_uri. Documented because the browser navigates it as part of a front-initiated logout — it is never called directly by an API client.
POST
/
oidc
/
session
/
end
/
confirm
Confirm RP-Initiated Logout
curl --request POST \
--url https://api.studio.prisme.ai/oidc/session/end/confirm \
--header 'Content-Type: application/x-www-form-urlencoded' \
--data 'xsrf=<string>'const options = {
method: 'POST',
headers: {'Content-Type': 'application/x-www-form-urlencoded'},
body: new URLSearchParams({xsrf: '<string>'})
};
fetch('https://api.studio.prisme.ai/oidc/session/end/confirm', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.studio.prisme.ai/oidc/session/end/confirm"
payload = { "xsrf": "<string>" }
headers = {"Content-Type": "application/x-www-form-urlencoded"}
response = requests.post(url, data=payload, headers=headers)
print(response.text)Was this page helpful?