# Update dashboard whitelabel

Toggle the whitelabel setting for a dashboard.

Source: https://statusdashboard.com/docs/api/status-dashboards/dashboards/whitelabel/update

`PATCH /app/dashboards/{id}/whitelabel`

Enables or disables the whitelabel setting for a dashboard. Requires the **Whitelabel** feature entitlement.

When enabled, the "Powered by StatusDashboard" footer branding is hidden on this status dashboard.

***

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

***

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

### Request body
| Field     | Type    | Description                                                                                          |
| --------- | ------- | ---------------------------------------------------------------------------------------------------- |
| `enabled` | boolean | **Required.** Set to `true` to hide the "Powered by StatusDashboard" footer on the status dashboard. |

***

## Sample request
```bash
curl -X PATCH https://api.statusdashboard.com/app/dashboards/a1b2c3d4-e5f6-7890-abcd-ef1234567890/whitelabel \
  -H "Authorization: Bearer bcf847abf5c6:def456" \
  -H "Content-Type: application/json" \
  -d '{
    "enabled": true
  }'
```

## Sample response
**Status: `200 OK`**

```json
{
  "enabled": true
}
```

***

## Error responses
| Status | When                                                                  |
| ------ | --------------------------------------------------------------------- |
| `400`  | Validation failure — `whitelabelEnabled` is missing or not a boolean. |
| `403`  | Insufficient permissions, or the Whitelabel feature is not enabled.   |
| `404`  | Dashboard not found or does not belong to the caller's organization.  |
