curl --location -g --request POST 'https://advertising-api.amazon.com/sb/campaigns/{{campaignId}}/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 '{
"budgetRuleIds": [
"{{budgetRuleId}}"
]
}'
{
"responses": [
{
"code": "Ok",
"details": "Budget rule associated",
"ruleId": "7788e003-ff0b-4005-bcfb-b68936103a9d"
}
]
}