> ## 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.

# XblTitleStorageGetBlobMetadataAsync

> XblTitleStorageGetBlobMetadataAsync

# XblTitleStorageGetBlobMetadataAsync

Gets a list of blob metadata objects under a given path for the specified service configuration, storage type and storage ID.

## Syntax

```cpp theme={null}
HRESULT XblTitleStorageGetBlobMetadataAsync(  
         XblContextHandle xboxLiveContext,  
         const char* serviceConfigurationId,  
         XblTitleStorageType storageType,  
         const char* blobPath,  
         uint64_t xboxUserId,  
         uint32_t skipItems,  
         uint32_t maxItems,  
         XAsyncBlock* async  
)  
```

### Parameters

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

An xbox live context handle created with XblContextCreateHandle.

*serviceConfigurationId*   \_In\_z\_\
Type: char\*

The Service Configuration ID (SCID) for the title. The SCID is considered case sensitive so paste it directly from the Partner Center.

*storageType*   \_In\_\
Type: [XblTitleStorageType](/reference/live/xsapi-c/title_storage_c/enums/xbltitlestoragetype)

The storage type to get blob metadata objects for.

*blobPath*   \_In\_z\_\
Type: char\*

The root path to enumerate. Results will be for blobs contained in this path and all subpaths. (Optional)

*xboxUserId*   \_In\_\
Type: uint64\_t

The XBOX User ID of the title storage to enumerate. Ignored when enumerating GlobalStorage, so passing 0 is acceptable. (Optional)

*skipItems*   \_In\_\
Type: uint32\_t

The number of items to skip before returning results. (Optional)

*maxItems*   \_In\_\
Type: uint32\_t

The maximum number of items to return. Pass 0 to attempt to retrieve all items. (Optional)

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

Caller allocated AsyncBlock.

### Return value

Type: HRESULT

HRESULT return code for this API operation.

## Remarks

To get the result, call XblTitleStorageGetBlobMetadataResult inside the AsyncBlock callback or after the AsyncBlock is complete.

## REST Call

V1 GET trustedplatform/users/xuid({xuid})/scids/{scid}/data/{path}?maxItems={maxItems}\[skipItems={skipItems}]\
V1 GET json/users/xuid({xuid})/scids/{scid}/data/{path}?maxItems={maxItems}\[skipItems={skipItems}]\
V1 GET global/scids/{scid}/data/{path}?maxItems={maxItems}\[skipItems={skipItems}]

## 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

- [Getting Title Storage blob metadata](/services/xbox-services/storage/title-storage/how-to/live-getting-title-storage-blob-metadata.md)
- [XblTitleStorageGetBlobMetadataResult](/reference/live/xsapi-c/title_storage_c/functions/xbltitlestoragegetblobmetadataresult.md)
- [XblTitleStorageBlobMetadataResultGetNextAsync](/reference/live/xsapi-c/title_storage_c/functions/xbltitlestorageblobmetadataresultgetnextasync.md)
- [XblTitleStorageBlobMetadataResultGetNextResult](/reference/live/xsapi-c/title_storage_c/functions/xbltitlestorageblobmetadataresultgetnextresult.md)
- [XblTitleStorageBlobMetadataResultHasNext](/reference/live/xsapi-c/title_storage_c/functions/xbltitlestorageblobmetadataresulthasnext.md)
