amazon-advertising-api-php-sdk
amazon-advertising-api-php-sdk copied to clipboard
Get report for a time period, not a single day.
Hi.
Im getting the report with this code snipped. $request = $client->requestReport(
"campaigns",
array(
"reportDate" => "20210815",
// "campaignType" => "sponsoredProducts",
"metrics" => "campaignName,impressions,clicks,cost"
)
);`
Is there any way to get report for a time range, for example last 7 days or last 30 days? Thank you.
Hi The ads api does not support time ranges at the moment. You need to call the api per day. Is there a reason you prefer time ranges vs calling the API per day?