metaAds.deleteAudience deletes a custom audience.
automations/meta-ads-delete-audience.automation.ts
{ account } selects a static project account binding.
Returns Meta’s mutation result. Deletion is not replay-safe.Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Deletes a custom audience.
metaAds.deleteAudience deletes a custom audience.
import { automation, onDashboardRun } from "automate.ax"
import { metaAds } from "automate.ax/meta-ads"
export default automation("Delete audience", () => {
onDashboardRun({ title: "Delete audience" })
const result = metaAds.deleteAudience({ id: "audience-id" })
// Use result in the next advertising, reporting, or delivery operation.
})
{ account } selects a static project account binding.
Returns Meta’s mutation result. Deletion is not replay-safe.