> Portal Navigation:
> 
> - Append `.md` to any URL under `https://dev.wix.com/docs/` to get its markdown version.
> - Pages are either content pages (article or reference text) or menu pages (a list of links to child pages).
> - To get a menu page, truncate any URL to a parent path and append `.md` (e.g. `https://dev.wix.com/docs/sdk.md`, `https://dev.wix.com/docs/sdk/core-modules.md`).
> - Top-level index of all portals: https://dev.wix.com/docs/llms.txt
> - Full concatenated docs: https://dev.wix.com/docs/llms-full.txt

# DeleteCampaign

# Package: googleAds

# Namespace: CampaignService

# Method link: https://dev.wix.com/docs/api-reference/business-management/marketing/ads/google-ads/campaign-v1/delete-campaign.md

## Permission Scopes:
Manage google ads campaigns: SCOPE.PROMOTE.MANAGE-GOOGLE-ADS

## Introduction

Permanently deletes a campaign. This action cannot be undone.

---

## REST API

### Schema

```
 Method: deleteCampaign
 Description: Permanently deletes a campaign. This action cannot be undone.
 URL: https://www.wixapis.com/_serverless/pa-google/v1/campaigns/{campaignId}
 Method: DELETE
 # Note: If the parameter `a.b` is listed under required parameters, `b` is only required if `a` is also present.
 Required parameters:  campaignId
 Method parameters: 
   param name: campaignId | type:   none | required: true 
 Return type: DeleteCampaignResponse
  EMPTY-OBJECT {}

 Possible Errors:
   HTTP Code: 404 | Status Code: NOT_FOUND | Application Code: CAMPAIGN_NOT_FOUND | Description: Couldn't find the campaign.


```

### Examples

### Delete Campaign
```curl
curl -X DELETE \
  'https://www.wixapis.com/google-ads/v1/campaigns/c9d8e7f6-a5b4-3210-fedc-ba9876543210' \
  -H 'Authorization: <AUTH>'
```

---

## JavaScript SDK

### Schema

```
 Method: wixClientAdmin.promoteGoogleAds.campaigns.deleteCampaign(campaignId)
 Description: Permanently deletes a campaign. This action cannot be undone.
 # Note: If the parameter `a.b` is listed under required parameters, `b` is only required if `a` is also present.
 Required parameters:  campaignId
 Method parameters: 
   param name: campaignId | type: string | description: GUID of the campaign to delete. | required: true | validation: format GUID
 Return type: PROMISE<DeleteCampaignResponse>
  EMPTY-OBJECT {}

 Possible Errors:
   HTTP Code: 404 | Status Code: NOT_FOUND | Application Code: CAMPAIGN_NOT_FOUND | Description: Couldn't find the campaign.


```

### Examples

### Delete a campaign
```javascript
import { campaigns } from '@wix/promote-google-ads';

await campaigns.deleteCampaign('c9d8e7f6-a5b4-3210-fedc-ba9876543210');

```

### deleteCampaign (self-hosted)
Self-hosted SDK calls require you to [create a client](https://dev.wix.com/docs/sdk/articles/work-with-the-sdk/about-the-wix-client.md).

```javascript
import { createClient } from '@wix/sdk';
import { campaigns } from '@wix/promote-google-ads';
// Import the auth strategy for the relevant access type
// Import the relevant host module if needed

const myWixClient = createClient ({
  modules: { campaigns },
  // Include the auth strategy and host as relevant
});


async function deleteCampaign(campaignId) {
  const response = await myWixClient.campaigns.deleteCampaign(campaignId);
};
```

---