curl --request POST \
--url https://api.example.com/api/v1/accounts/{accountId}/projects/{projectId}/widgets/{widgetId}/configurations/{widgetConfigurationId}/deltas \
--header 'Content-Type: application/json' \
--data '
{
"delta": [
{}
],
"sequenceNumber": 123,
"fullConfiguration": {}
}
'{
"id": "<string>",
"accountId": "<string>",
"baseWidgetConfigurationId": "<string>",
"creatorId": "<string>",
"delta": {},
"createdAt": "<string>",
"sequenceNumber": 123,
"fullConfiguration": {}
}Saves a delta to an existing widget configuration for the specified account and widget
curl --request POST \
--url https://api.example.com/api/v1/accounts/{accountId}/projects/{projectId}/widgets/{widgetId}/configurations/{widgetConfigurationId}/deltas \
--header 'Content-Type: application/json' \
--data '
{
"delta": [
{}
],
"sequenceNumber": 123,
"fullConfiguration": {}
}
'{
"id": "<string>",
"accountId": "<string>",
"baseWidgetConfigurationId": "<string>",
"creatorId": "<string>",
"delta": {},
"createdAt": "<string>",
"sequenceNumber": 123,
"fullConfiguration": {}
}The ID of the account
The ID of the project
The ID of the widget
The ID of the widget configuration
The ID of the widget configuration delta
The ID of the account
The ID of the base widget configuration
The ID of the creator
The patch applied to the widget configuration
The timestamp when the delta was created
The sequence number of the delta
The full widget configuration after applying the patch