Cannot get email from api request using access token

Using access token, it is retrieving all other values needed except the email addresses for each member.

$url = “$BaseUrl/campaigns/$CampaignId/members?page[count]=100&include=currently_entitled_tiers,user&fields[member]=full_name,patron_status&fields[user]=email,full_name,like_count&fields[tier]=title,amount_cents,discord_role_ids”

$response = Invoke-RestMethod -Uri $url -Headers $Headers
$response.included output only has the full_name and the like_count

What gives? Seems like the API is broken in this regard.

I’m guessing that you might be user a creator token (one from Patreon Platform ) with your request. This access token does not have permissions to retrieve user.email (see docs API Reference ). Instead fetch the email via member.email.

That was it - i figured it out yesterday - pretty sure somewhere in the API doc it says to use the user scope - but could be wrong. Thanks