Delete SSO Integration
Deletes a specific SSO integration from your account. This action is permanent and cannot be undone.
Endpoint
DELETE
v5/sso/{sso_id}
Requires authentication
Path Parameters
Identifies the SSO integration to delete.
sso_id
string
required
The ID of the SSO integration to delete.
Response
Returns a status object confirming the deletion.
result_ok
boolean
Whether the request succeeded.
status
string
Confirmation of the deletion. Returns
success on a successful delete.Examples
Request (cURL)
curl -X DELETE "https://api.alchemer.com/v5/sso/YOUR_SSO_ID?api_token=YOUR_API_TOKEN&api_token_secret=YOUR_API_TOKEN_SECRET"
Response
{
"result_ok": true,
"status": "success"
}