/
/Notifuse API
DocsSign in
Sign in
  • APIs
  • Generators
  • Stacks
  • Projects
  • Docs
  • History
  • Schema
Checked 24m ago · Updated 2w ago
  • postSend a transactional notification
  • postCreate or update a contact
  • getGet a contact by email address
  • getGet a contact by external ID
  • postBatch import contacts
  • postDelete a contact
  • postUpdate contact list subscription status
  • getList broadcasts
  • getGet a broadcast
  • postCreate a broadcast
  • postUpdate a broadcast
  • postSchedule a broadcast
  • postPause a broadcast
  • postResume a broadcast
  • postCancel a broadcast
  • postSend broadcast to individual
  • postDelete a broadcast
  • getGet A/B test results
  • postSelect winning A/B test variation
  • getList templates
  • getGet a template
  • postCreate a template
  • postUpdate a template
  • postDelete a template
  • postCompile template
  • postImport custom events
  • postCreate a webhook subscription
  • getList webhook subscriptions
  • getGet a webhook subscription
  • postUpdate a webhook subscription
  • postDelete a webhook subscription
  • postToggle webhook subscription enabled state
  • postRegenerate webhook secret
  • getGet webhook delivery history
  • postSend a test webhook
  • getList available event types
  • postSubscribe to email lists
  • postSubscribe to email lists (authenticated)

Delete a broadcast

Deletes a broadcast. This action is permanent and cannot be undone.

post/api/broadcasts.delete

Request body

workspace_idstring required

The ID of the workspace

idstring required

ID of the broadcast to delete

Example request

{
  "workspace_id": "ws_1234567890",
  "id": "broadcast_12345"
}

Response

Broadcast deleted successfully

successboolean

Example response

{
  "success": true
}

Changes