From a line_item, I got the PromotedTweet with the following code:
tweet_list = list(PromotedTweet.all(account, line_item_ids=line_item.id))
tweet = tweet_list[0]
tweet.paused = True
tweet.save()
But, the tweet’s status was not updated when viewed with the Ads Manager. Could you please explain why this is?
Thanks.