> 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

# DismissMediaUploadFailures

# Package: googleBusinessProfile

# Namespace: MediaUploadService

# Method link: https://dev.wix.com/docs/api-reference/business-management/google-business-profile/media-upload-v1/dismiss-media-upload-failures.md

## Permission Scopes:
Manage SEO Settings: SCOPE.PROMOTE.MANAGE-SEO

## Introduction

Clears a location's failed photo changes, leaving queued ones alone.

Failures are otherwise kept until the next submission for that location
replaces them, so this is how a site owner dismisses a photo that's never
going to succeed.

`dismissedCount` reports how many were cleared.

---

## REST API

### Schema

```
 Method: dismissMediaUploadFailures
 Description: Clears a location's failed photo changes, leaving queued ones alone.  Failures are otherwise kept until the next submission for that location replaces them, so this is how a site owner dismisses a photo that's never going to succeed.  `dismissedCount` reports how many were cleared.
 URL: https://www.wixapis.com/gbp/v1/locations/{locationId}/media-uploads/dismiss-failures
 Method: POST
 Return type: DismissMediaUploadFailuresResponse
  - name: dismissedCount | type: integer | description: How many failed changes were cleared.  


```

### Examples

### Dismiss a location's failed photo changes
Clears only FAILED items. Anything still PENDING or UPLOADING keeps draining.

```curl
curl -X POST \
'https://www.wixapis.com/gbp/v1/locations/locations%2F8117348495523092385/media-uploads/dismiss-failures' \
-H 'Authorization: <AUTH>' \
-H 'Content-Type: application/json'
```

---

## JavaScript SDK

### Schema

```
 Method: wixClientAdmin.gbp.mediaUploads.dismissMediaUploadFailures(locationId)
 Description: Clears a location's failed photo changes, leaving queued ones alone.  Failures are otherwise kept until the next submission for that location replaces them, so this is how a site owner dismisses a photo that's never going to succeed.  `dismissedCount` reports how many were cleared.
 # Note: If the parameter `a.b` is listed under required parameters, `b` is only required if `a` is also present.
 Required parameters:  locationId
 Method parameters: 
   param name: locationId | type: string | description: GUID of the location. This is Google's location identifier. | required: true | validation: minLength 1, maxLength 255
 Return type: PROMISE<DismissMediaUploadFailuresResponse>
  - name: dismissedCount | type: integer | description: How many failed changes were cleared.  


```

### Examples

### Dismiss a location's failed photo changes
Clears only FAILED items. Anything still PENDING or UPLOADING keeps draining.

```javascript
import { mediaUploads } from "@wix/gbp";

async function dismissMediaUploadFailures() {
  const response = await mediaUploads.dismissMediaUploadFailures(
    "locations/8117348495523092385",
  );
}

/* Promise resolves to:
 * {
 *   "dismissedCount": 1
 * }
 */

```

### dismissMediaUploadFailures (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 { mediaUploads } from '@wix/gbp';
// Import the auth strategy for the relevant access type
// Import the relevant host module if needed

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


async function dismissMediaUploadFailures(locationId) {
  const response = await myWixClient.mediaUploads.dismissMediaUploadFailures(locationId);
};
```

---