> ## Documentation Index
> Fetch the complete documentation index at: https://devdocs.xbox.com/llms.txt
> Use this file to discover all available pages before exploring further.

# XblTitleStorageDeleteBlobAsync

> XblTitleStorageDeleteBlobAsync

# XblTitleStorageDeleteBlobAsync

Deletes a blob from title storage.

## Syntax

```cpp theme={null}
HRESULT XblTitleStorageDeleteBlobAsync(  
         XblContextHandle xboxLiveContext,  
         XblTitleStorageBlobMetadata blobMetadata,  
         bool deleteOnlyIfEtagMatches,  
         XAsyncBlock* async  
)  
```

### Parameters

*xboxLiveContext*   \_In\_\
Type: [XblContextHandle](/reference/live/xsapi-c/types_c/handles/xblcontexthandle)

An xbox live context handle created with XblContextCreateHandle.

*blobMetadata*   \_In\_\
Type: [XblTitleStorageBlobMetadata](/reference/live/xsapi-c/title_storage_c/structs/xbltitlestorageblobmetadata)

The blob metadata for the title storage blob to delete.

*deleteOnlyIfEtagMatches*   \_In\_\
Type: bool

Specifies whether or not to have the delete operation check that the ETag matches before deleting the blob.

*async*   \_In\_\
Type: XAsyncBlock\*

Caller allocated AsyncBlock.

### Return value

Type: HRESULT

HRESULT return code for this API operation.

## Remarks

The result of the asynchronous operation can be obtained by calling [XAsyncGetStatus](/reference/system/xasync/functions/xasyncgetstatus) inside the AsyncBlock callback or after the AsyncBlock is complete.

## REST Call

V1 DELETE trustedplatform/users/xuid({xuid})/scids/{scid}/data/{path},{type}\
V1 DELETE json/users/xuid({xuid})/scids/{scid}/data/{path},{type}\
V1 DELETE sessions/{sessionId}/scids/{scid}/data/{path},{type}

## Requirements

**Header:** title\_storage\_c.h

**Library:** Microsoft.Xbox.Services.14x.GDK.C.lib

## See also

[title\_storage\_c](/reference/live/xsapi-c/title_storage_c/title_storage_c_members)


## Related topics

- [Deleting a blob from Title Storage](/services/xbox-services/storage/title-storage/how-to/live-deleting-title-storage-blob.md)
- [Uploading a blob to Title Storage](/services/xbox-services/storage/title-storage/how-to/live-uploading-title-storage-blob.md)
- [Downloading a blob from Title Storage](/services/xbox-services/storage/title-storage/how-to/live-downloading-title-storage-blob.md)
- [Getting Title Storage blob metadata](/services/xbox-services/storage/title-storage/how-to/live-getting-title-storage-blob-metadata.md)
- [XblTitleStorageDownloadBlobAsync](/reference/live/xsapi-c/title_storage_c/functions/xbltitlestoragedownloadblobasync.md)
