Remove custom audience member
DELETE/ad-publishing/facebook/custom-audience/:audienceId/member
Remove a single contact from a Facebook custom audience. Note this DELETE takes a request body carrying locationId and contactId, rather than identifying the member through the path or query.
Request
Version stringrequired
API Version
Available options
v3audienceId stringrequired
Custom audience identifier
- application/json
- Body
- Example (auto)
Bodyrequired
locationIdstringrequired
Location identifier
contactIdstringrequired
Contact identifier
fbAdAccountIdstring
Facebook ad account ID
{
"locationId": "loc_abc123",
"contactId": "contact_123",
"fbAdAccountId": "act_123456"
}
Acknowledgement that the contact was removed, naming the audience in msg
- application/json
- Schema
- Example (auto)
Schema
statusnumberrequired
Always 200. Mirrors the HTTP status rather than reporting anything additional.
msgstringrequired
Human-readable confirmation. Wording varies with the operation performed.
{
"status": 200,
"msg": "Successfully updated audience"
}