@marto1689: What’s the request you’re trying to make that’s resulting in that error message?
In any case, let me clarify what the GET accounts/:account_id/promotable_users is intended for.
Let’s first look at the promotable users response:
$ twurl -H ads-api.twitter.com "/4/accounts/18ce54c9mra/promotable_users"
{
"request": {
"params": {
"account_id": "18ce54c9mra"
}
},
"next_cursor": null,
"data": [
{
"user_id": "4893080543",
"id": "k7ovy",
"account_id": "18ce54c9mra",
"created_at": "2016-06-09T21:43:38Z",
"updated_at": "2016-06-09T21:43:38Z",
"deleted": false,
"promotable_user_type": "FULL"
}
]
}
This endpoint shows us all of the users whose content the ads account is able to promote. There are two kinds of promotable users:
-
FULL: This is the owner of the ads account (in this case, user 4893080543). There is only ever one FULL promotable user for an ads account.
-
RETWEETS_ONLY: These are other users whose content the ads account has access to promoting.
(Just for reference, this is another thread where a similar question has been asked.)
I suspect that you may be interested to see what accounts the authenticated user has access to. For that, you’d use the GET accounts/:account_id/authenticated_user_access endpoint.