Hi,
I don’t understand how to change the Full Promotable User associated with my advertiser account. For example:
When I request twurl -H ads-api.twitter.com /3/accounts/alcxt/authenticated_user_access, I see:
{
"data": {
"user_id": 4249658592,
"permissions": [
"ACCOUNT_ADMIN",
"TWEET_COMPOSER"
]
},
"request": {
"params": {
"account_id": "alcxt"
}
}
}
This tells me that user_id 4249658592 is authenticated on my account “alcxt”, with the ability to create promoted tweets. Awesome. However, when I request twurl -H ads-api.twitter.com /3/accounts/alcxt/promotable_users I see the following:
{
"request": {
"params": {
"account_id": "alcxt"
}
},
"next_cursor": null,
"data": [
{
"user_id": "17792705",
"id": "4gn",
"account_id": "alcxt",
"created_at": "2012-04-05T22:20:09Z",
"updated_at": "2017-10-10T12:14:00Z",
"deleted": false,
"promotable_user_type": "FULL"
}
]
}
How can I change the Full Promotable User on my account to be user_id 4249658592 instead of 17792705?