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

# PFCatalogGetDraftItemsAsync

> Retrieves a paginated list of the items from the draft catalog. Up to 50 IDs can be retrieved in a single request. GetDraftItems does not work off a cache of.

Retrieves a paginated list of the items from the draft catalog. Up to 50 IDs can be retrieved in a single request. GetDraftItems does not work off a cache of the Catalog and should be used when trying to get recent item updates.

## Syntax

```cpp theme={null}
HRESULT PFCatalogGetDraftItemsAsync(  
    PFEntityHandle entityHandle,  
    const PFCatalogGetDraftItemsRequest* request,  
    XAsyncBlock* async  
)  
```

### Parameters

**`entityHandle`**   PFEntityHandle

PFEntityHandle to use for authentication.

**`request`**   [PFCatalogGetDraftItemsRequest\*](/services/playfab/api-references/c/pfcatalogtypes/structs/pfcataloggetdraftitemsrequest)

Populated request object.

**`async`**   XAsyncBlock\*<br />*Inout*

XAsyncBlock for the async operation.

### Return value

Type: HRESULT

Result code for this API operation.

## Remarks

This API is available on all platforms. When the asynchronous task is complete, call [PFCatalogGetDraftItemsGetResultSize](/services/playfab/api-references/c/pfcatalog/functions/pfcataloggetdraftitemsgetresultsize) and [PFCatalogGetDraftItemsGetResult](/services/playfab/api-references/c/pfcatalog/functions/pfcataloggetdraftitemsgetresult) to get the result.

## Requirements

**Header:** PFCatalog.h

## See also

[PFCatalog members](/services/playfab/api-references/c/pfcatalog/pfcatalog_members)


## Related topics

- [PFCatalogGetDraftItemsGetResult](/services/playfab/api-references/c/pfcatalog/functions/pfcataloggetdraftitemsgetresult.md)
- [Services C API overview - PFCatalog.h](/services/playfab/api-references/c/pfcatalog/pfcatalog_members.md)
- [PFCatalogGetDraftItemAsync](/services/playfab/api-references/c/pfcatalog/functions/pfcataloggetdraftitemasync.md)
- [PFCatalogCreateDraftItemAsync](/services/playfab/api-references/c/pfcatalog/functions/pfcatalogcreatedraftitemasync.md)
- [PFCatalogUpdateDraftItemAsync](/services/playfab/api-references/c/pfcatalog/functions/pfcatalogupdatedraftitemasync.md)
