curl --location --request PUT 'https://www.amazon.com/ap/oa/sd/budgetRules' \
--header 'Amazon-Advertising-API-ClientId: {{client_id}}' \
--header 'Authorization: Bearer {{access_token}}' \
--header 'Amazon-Advertising-API-Scope: {{profileId}}' \
--header 'Accept: application/json' \
--header 'Content-Type: text/plain' \
--data-raw '{
"budgetRulesDetails": [
{
"ruleId": "{{budgetRuleId}}",
"ruleState": "PAUSED"
}
]
}'
{
"responses": [
{
"associatedCampaignIds": null,
"code": "Ok",
"details": "Budget rule updated",
"ruleId": "3b12acec-cba0-45b8-bb10-59a44dc52896"
}
]
}