Delete the account's SAML SSO connection. The local row goes first so the public SSO-start lookup stops resolving immediately even if the Stytch call fails; the Stytch delete is then best-effort.
DELETE
/account/sso/saml/connection
const url = 'https://api.siteqwality.com/account/sso/saml/connection';const options = {method: 'DELETE', headers: {Authorization: 'Bearer <token>'}};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request DELETE \ --url https://api.siteqwality.com/account/sso/saml/connection \ --header 'Authorization: Bearer <token>'Authorizations
Section titled “Authorizations ”Responses
Section titled “ Responses ”Connection deleted
Missing or invalid authentication
Caller is not a super admin, or the plan does not include SSO
No SSO connection configured
Internal server error