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.