@MOLCODO: Thanks for the follow up. Let us try to clarify what we’re seeing.
The original post specifies jes0g as the Promoted Tweet ID.
$ twurl -H ads-api.twitter.com "/1/accounts/18ce53upj2u/promoted_tweets/jes0g" | jq
{
"request": {
"params": {
"promoted_tweet_id": "jes0g",
"account_id": "18ce53upj2u"
}
},
"data_type": "promoted_tweet",
"data": {
"line_item_id": "43ig9",
"display_properties": [],
"id": "jes0g",
"paused": false,
"created_at": "2016-01-14T17:59:16Z",
"updated_at": "2016-01-14T18:00:49Z",
"approval_status": "ACCEPTED",
"tweet_id": "687694014376579073",
"deleted": false
}
}
From here, we can look up the line item using line_item_id.
$ twurl -H ads-api.twitter.com "/1/accounts/18ce53upj2u/line_items/43ig9" | jq
{
"request": {
"params": {
"line_item_id": "43ig9",
"account_id": "18ce53upj2u"
}
},
"data_type": "line_item",
"data": {
"bid_type": "MAX",
"advertiser_user_id": 84176272,
"name": "Untitled",
"placements": [
"TWITTER_TIMELINE",
"TWITTER_PROFILE"
],
"start_time": null,
"bid_amount_local_micro": 2850000,
"automatically_select_bid": false,
"advertiser_domain": null,
"target_cpa_local_micro": null,
"primary_web_event_tag": null,
"charge_by": "ENGAGEMENT",
"product_type": "PROMOTED_TWEETS",
"end_time": null,
"bid_unit": "ENGAGEMENT",
"total_budget_amount_local_micro": null,
"objective": "TWEET_ENGAGEMENTS",
"id": "43ig9",
"entity_status": "ACTIVE",
"paused": false,
"account_id": "18ce53upj2u",
"optimization": "DEFAULT",
"categories": [],
"currency": "CAD",
"created_at": "2016-01-14T17:59:16Z",
"tracking_tags": [],
"updated_at": "2016-03-24T20:01:52Z",
"include_sentiment": "POSITIVE_ONLY",
"campaign_id": "3zfzt",
"creative_source": "MANUAL",
"deleted": false
}
}
This is so we can get to the campaign in question using campaign_id from the above response.
$ twurl -H ads-api.twitter.com "/1/accounts/18ce53upj2u/campaigns/3zfzt" | jq
{
"request": {
"params": {
"campaign_id": "3zfzt",
"account_id": "18ce53upj2u"
}
},
"data_type": "campaign",
"data": {
"name": "Copy of: beer angel gif eng",
"start_time": "2016-01-14T17:59:00Z",
"reasons_not_servable": [
"EXPIRED",
"FUNDING_PROBLEM"
],
"servable": false,
"daily_budget_amount_local_micro": 400000000,
"end_time": "2016-01-18T03:59:00Z",
"funding_instrument_id": "j4s3n",
"duration_in_days": null,
"standard_delivery": true,
"total_budget_amount_local_micro": 947000000,
"id": "3zfzt",
"entity_status": "ACTIVE",
"paused": false,
"account_id": "18ce53upj2u",
"frequency_cap": null,
"currency": "CAD",
"created_at": "2016-01-14T17:59:16Z",
"updated_at": "2016-03-24T20:01:49Z",
"deleted": false
}
}
Note that (see reasons_not_servable):
- the campaign has expired
- there is a funding problem
This particular campaign’s start time was "2016-01-14T17:59:00Z" and it’s end time was "2016-01-18T03:59:00Z".
We also took a look at the funding instrument response by making the following request:
$ twurl -H ads-api.twitter.com "/1/accounts/18ce53upj2u/funding_instruments/j4s3n"
This funding instrument’s end date was "2016-02-01T07:59:59Z".
All of this suggests that this campaign was not active in August 2016.
Finally, we took a look at the Twitter Ads UI and did not see any active campaigns for that time period.