I could successfully able to push users into custom audience in facebook in this endpoint - https://graph.facebook.com/v5.0/audienceid_goes_here/users
Now I need to delete the user from the custom audience. I tried with the same endpoint but am getting OAuth "Facebook Platform" "invalid_request" "Permissions error"
Have provided all admin permissions under business settings to systems users and granted all access. Still not sure how to make this work. Am I missing anything?
Any help would be greatly appreciated
Below is the code that I tried
Endpoint - https://graph.facebook.com/v5.0/audience_id_goes_here/users
Method - DELETE
payload={
"schema": [
"EMAIL_SHA256"
],
"data": [
[
"hashed_email_goes_here"
]
]
}