---
title: "Delete campaign"
url: "https://earlyaccess.developers.bynder.com/apis/workflow-campaigns-api-1/versions/e0ad0bb4-8312-4ba5-bc53-d0218db2d92e/paths/api-workflow-campaigns-id/delete"
---

> Full API specification: https://earlyaccess.developers.bynder.com/apis/workflow-campaigns-api-1/versions/e0ad0bb4-8312-4ba5-bc53-d0218db2d92e.md

# Delete campaign

`DELETE` `/api/workflow/campaigns/{id}`

Requires the CAMPAIGNREMOVE security role.

## Path parameters

- `id` (string, required)

## Responses

- `204` - Campaign deleted successfully

## OpenAPI definition

```yaml
openapi: 3.1.0
info:
  title: Workflow Campaigns API
  version: 1.0.0
servers:
  - url: https://{your-bynder-domain}
paths:
  /api/workflow/campaigns/{id}:
    delete:
      description: Requires the CAMPAIGNREMOVE security role.
      parameters:
        - in: path
          name: id
          required: true
          schema:
            example: 00000000-0000-0000-0000-000000000000
            type: string
      responses:
        "204":
          description: Campaign deleted successfully
      security:
        - OAuth2:
            - CAMPAIGNREMOVE
        - permanentToken:
            - CAMPAIGNREMOVE
      summary: Delete campaign
      tags:
        - Campaigns
security:
  - OAuth2:
      - CAMPAIGNREMOVE
  - permanentToken:
      - CAMPAIGNREMOVE
components:
  securitySchemes:
    OAuth2:
      flows:
        authorizationCode:
          authorizationUrl: https://{your-auth-url}
          scopes:
            CAMPAIGNADD: ""
            CAMPAIGNEDIT: ""
            CAMPAIGNOVERVIEW: ""
            CAMPAIGNREMOVE: ""
            CAMPAIGNWRITE: ""
          tokenUrl: https://{your-bynder-domain}/v6/authentication/oauth2/token
        clientCredentials:
          scopes:
            CAMPAIGNADD: ""
            CAMPAIGNEDIT: ""
            CAMPAIGNOVERVIEW: ""
            CAMPAIGNREMOVE: ""
            CAMPAIGNWRITE: ""
          tokenUrl: https://{your-bynder-domain}/v6/authentication/oauth2/token
      type: oauth2
    permanentToken:
      in: header
      name: Authorization
      type: apiKey
```
