Add custom audience member
PUT/ad-publishing/facebook/custom-audience/:audienceId/member
Add a single contact to a Facebook custom audience. The contact is resolved from contactId and its identifiers are hashed before being sent to Meta. Use the batch endpoint for more than one member.
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 added, 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"
}