Hi, I try to retrieve some parameters from published campaigns using PHP api v201406.
In CampaignService documentation is written in Campaign > Budget section "
Amount of budget in the local currency for the account. This field can be selected using the value "Amount"".
When I add "Amount" in the selector then this key just disappear from the result. E.g:
...
[startDate] =>
[endDate] =>
[budget] => Array
(
[budgetId] =>
[name] =>
[period] => DAILY
[deliveryMethod] => STANDARD
[referenceCount] =>
[isExplicitlyShared] =>
[status] =>
)
[conversionOptimizerEligibility] => Array...
If I don't add "Amount" in the selector this key appears but with empty content (normal behaviour when a parameter is not requested). E.g:
...
[startDate] =>
[endDate] =>
[budget] => Array
(
[budgetId] =>
[name] =>
[period] => DAILY
[deliveryMethod] => STANDARD
[referenceCount] =>
[isExplicitlyShared] =>
[status] =>
)
[conversionOptimizerEligibility] => Array...
Sounds like a bug ?
Thanks for your help,
Gaëtan