curl --request PATCH \
--url https://api.example.com/api/v1/status-pages/{id}/customization \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"primaryColor": "<string>",
"accentColor": "<string>",
"backgroundColor": "<string>",
"foregroundColor": "<string>",
"primaryForegroundColor": "<string>",
"cardColor": "<string>",
"cardForegroundColor": "<string>",
"mutedColor": "<string>",
"mutedForegroundColor": "<string>",
"borderColor": "<string>",
"textColor": "<string>",
"useDarkTheme": true,
"showSubscriptionButton": true,
"showRecentUpdatesSection": true,
"hideHeaderName": true,
"shadowStyle": "<string>",
"borderRadiusStyle": "<string>",
"defaultLanguage": "<string>",
"headerDisplayName": "<string>",
"customCss": "<string>",
"customHeaderHtml": "<string>",
"customFooterHtml": "<string>"
}
'