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

# PFCatalogGetDraftItemAsync

> Retrieves an item from the working catalog. This item represents the current working state of the item. GetDraftItem does not work off a cache of the Catalog.

Retrieves an item from the working catalog. This item represents the current working state of the item. GetDraftItem does not work off a cache of the Catalog and should be used when trying to get recent item updates. However, please note that item references data is cached and may take a few moments for changes to propagate.

## Syntax

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

### Parameters

**`entityHandle`**   PFEntityHandle

PFEntityHandle to use for authentication.

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

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 [PFCatalogGetDraftItemGetResultSize](/services/playfab/api-references/c/pfcatalog/functions/pfcataloggetdraftitemgetresultsize) and [PFCatalogGetDraftItemGetResult](/services/playfab/api-references/c/pfcatalog/functions/pfcataloggetdraftitemgetresult) to get the result.

## Requirements

**Header:** PFCatalog.h

## See also

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


## Related topics

- [PFCatalogGetDraftItemGetResult](/services/playfab/api-references/c/pfcatalog/functions/pfcataloggetdraftitemgetresult.md)
- [Services C API overview - PFCatalog.h](/services/playfab/api-references/c/pfcatalog/pfcatalog_members.md)
- [PFCatalogGetDraftItemsAsync](/services/playfab/api-references/c/pfcatalog/functions/pfcataloggetdraftitemsasync.md)
- [PFCatalogCreateDraftItemAsync](/services/playfab/api-references/c/pfcatalog/functions/pfcatalogcreatedraftitemasync.md)
- [PFCatalogUpdateDraftItemAsync](/services/playfab/api-references/c/pfcatalog/functions/pfcatalogupdatedraftitemasync.md)
