amzn / amazon-advertising-api-php-sdk

⛔️ DEPRECATED - Amazon Advertising API PHP Client Library
Apache License 2.0
93 stars 67 forks source link

startIndex and count #14

Open xyrintech opened 5 years ago

xyrintech commented 5 years ago

Is there anyway we can handle startIndex and count for the records?

dbrent-amazon commented 5 years ago
$req = $client->listCampaigns(
    array("stateFilter" => "enabled,paused,archived",
          "startIndex" => 0,
          "count" => 3));
ianrussel commented 3 years ago

Hello @dbrent-amazon ,hope you are doing well, I would like you ask how to get the total counts of campaigns, unfortunately I dont know where to ask question related to advertising api since there's no other active amazon advertising api repo. From official docs its says the count's default is the campaigns max size. However I don't see any details of total campaigns count in response.I need it in frontend pagination.