put https://powerinbox.azure-api.net/management/line/
Update a campaign line.
Allows modifying the budget, bid amount or both at ounce.
When setting pricing settings, one of the pricing settings properties corresponding to the type of bid must be set.
Examples
- Set a budget of $500/day with a bid of $0.80 CPC:
{
"budget": 500,
"pricing": {
"cpc": 0.8
}
}
- Set a budget of $250/day without modifying the bid amount
{
"budget": 250
}
- Set a bid amount of $1.50 CPM without modifying the budget
{
"pricing": {
"cpm": 1.5
}
}