## Delete Campaign **delete** `/print-mail/v1/campaigns/{id}` Delete a campaign. Campaigns can only be deleted if they are in `draft`, `changes_required`, or `ready` status. This also permanently deletes associated resources. This operation cannot be undone. ### Path Parameters - `id: string` ### Returns - `id: string` A unique ID prefixed with campaign_ - `deleted: true` - `true` ### Example ```http curl https://api.postgrid.com/print-mail/v1/campaigns/$ID \ -X DELETE \ -H "X-API-Key: $POSTGRID_PRINT_MAIL_API_KEY" ``` #### Response ```json { "id": "campaign_sqF12lZ1VlBb", "deleted": true } ```