I am trying to run the API to get stats for 5 different clients. On two of them I’m seeing stats, the numbers are fine, etc. The other 3 though, I’m just seeing zero spend, zero conversions, and no stats at all. The calls are identical between the two minus the account id, and I’ve tried HOUR, DAY, and TOTAL (only solution I’ve found in the forums to this), and get the same result.
Here is an example of req/resp I’m getting:
[params] => Array
(
[granularity] => DAY
[start_time] => 2015-06-10
[end_time] => 2015-06-11
[metrics] => conversion_site_visits,conversion_purchases,conversion_downloads,conversion_sign_ups,conversion_custom,conversion_sale_amount,conversion_order_quantity
[promoted_tweet_ids] => [tweet id list]
[Headers] => Array( [removed for security])
)
And the returns for any set of ads which are running traffic:
[189] => stdClass Object
(
[start_time] => 2015-06-10T04:00:00Z
[conversion_purchases] => Array
(
[0] => 0
)
[conversion_sign_ups] => Array
(
[0] => 0
)
[end_time] => 2015-06-11T04:00:00Z
[id] => [#id]
[conversion_site_visits] => Array
(
[0] => 0
)
[granularity] => DAY
[conversion_sale_amount] => Array
(
[0] => 0
)
[conversion_order_quantity] => Array
(
[0] => 0
)
)
Thank you for any help,
-Daniel