# Remove SSO provider

Remove the SSO provider from a dashboard and disable SSO enforcement.

Source: https://statusdashboard.com/docs/api/status-dashboards/dashboards/sso/delete

`DELETE /app/dashboards/{id}/sso`

Removes the SSO provider from a dashboard and disables SSO enforcement. The dashboard reverts to being publicly accessible. This operation is idempotent — calling it on a dashboard with no SSO provider configured returns `204` without error.

Requires the **SSO** feature entitlement.

***

## Path parameters
| Parameter | Description                |
| --------- | -------------------------- |
| `id`      | The UUID of the dashboard. |

***

## Request
See [API Basics](/docs/api) for required headers.

This endpoint takes no request body.

***

## Sample request
```bash
curl -X DELETE https://api.statusdashboard.com/app/dashboards/a1b2c3d4-e5f6-7890-abcd-ef1234567890/sso \
  -H "Authorization: Bearer bcf847abf5c6:def456"
```

## Sample response
**Status: `204 No Content`**

No response body.

***

## Error responses
| Status | When                                                                 |
| ------ | -------------------------------------------------------------------- |
| `403`  | SSO feature not enabled on the plan.                                 |
| `404`  | Dashboard not found or does not belong to the caller's organization. |
