DashboardsSingle Sign-On
Toggle AuthN request signing
Enable or disable signed SAML authentication requests for a dashboard SSO provider.
PATCH /app/dashboards/{id}/sso/authn-signing
Turns SAML AuthN request signing on or off for one dashboard SSO provider. Requires the SSO feature entitlement.
The Configure SSO provider body is unchanged and does not accept a signing flag. Use this endpoint instead.
Returns 409 when no SAML provider is configured or the provider is OIDC.
Path parameters
| Parameter | Description |
|---|---|
id | The UUID of the dashboard. |
Request
See API Basics for required headers.
Request body
| Field | Type | Required | Description |
|---|---|---|---|
enabled | boolean | Yes | true to sign AuthN requests; false to stop signing. |
Sample request
curl -X PATCH https://api.statusdashboard.com/app/dashboards/a1b2c3d4-e5f6-7890-abcd-ef1234567890/sso/authn-signing \
-H "Authorization: Bearer bcf847abf5c6:def456" \
-H "Content-Type: application/json" \
-d '{ "enabled": true }'Sample response
Status: 200 OK
{
"enabled": true
}Error responses
| Status | When |
|---|---|
400 | Body fails validation. |
403 | SSO feature not enabled on the plan. |
404 | Dashboard not found or does not belong to the caller's organization. |
409 | No SAML provider configured, or provider is OIDC. |
500 | Identity provider did not reach the requested signing state. |

