Skip to main content
POST
/
api
/
v1
/
audience-syncs
/
{syncId}
/
sync
Run Audience Sync
curl --request POST \
  --url https://api.sequenzy.com/api/v1/audience-syncs/{syncId}/sync \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "queued": true
}
Trigger an immediate upload of the segment’s active subscribers to the Meta audience, outside the regular schedule. The sync must be active (not paused).

Request

syncId
string
required
Audience sync ID
curl -X POST "https://api.sequenzy.com/api/v1/audience-syncs/sync_abc123/sync" \
  -H "Authorization: Bearer YOUR_API_KEY"

Responses

{
  "success": true,
  "queued": true
}