Hi All!
I would like to update (add emails/device ids etc.) a Tailored Audience using Python SDK. There is an example in the repo (https://github.com/twitterdev/twitter-python-ads-sdk) how to create and subsequently update an audience, however, I would like to update an already existing one by providing the audience’s id. I would need to do something like this:
$ audience = TailoredAudience(‘audience_id’)
I also tried updating the email list via twurl:
$ twurl -X POST -H ads-api.twitter.com “/3/accounts/account_id/tailored_audience_changes?tailored_audience_id=audience_id&operation=ADD&input_file_path=file_path” | jq
And the change is registered when I check tailored audiences changes via:
$ twurl --trace -H ads-api.twitter.com “/3/accounts/account_id/tailored_audience_changes” | jq
However, the emails are not added to the list when I check the tailored audience size.
Do you know how to solve this issue?
Many thanks in advance!