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

# PFTitleDataManagementSetPublisherDataRequest

> PFTitleDataManagementSetPublisherDataRequest data model. This API is designed to store publisher-specific values which can be read, but not written to, by.

PFTitleDataManagementSetPublisherDataRequest data model. This API is designed to store publisher-specific values which can be read, but not written to, by the client. This data is shared across all titles assigned to a particular publisher, and can be used for cross-game coordination. Only titles assigned to a publisher can use this API. This operation is additive. If a Key does not exist in the current dataset, it will be added with the specified Value. If it already exists, the Value for that key will be overwritten with the new Value. For more information email [helloplayfab@microsoft.com](mailto:helloplayfab@microsoft.com).

## Syntax

```cpp theme={null}
typedef struct PFTitleDataManagementSetPublisherDataRequest {  
    const char* key;  
    const char* value;  
} PFTitleDataManagementSetPublisherDataRequest;  
```

### Members

**`key`**   const char\*<br />*is null-terminated*

Key we want to set a value on (note, this is additive - will only replace an existing key's value if they are the same name.) Keys are trimmed of whitespace. Keys may not begin with the '!' character.

**`value`**   const char\*<br />*is null-terminated*

(Optional) New value to set. Set to null to remove a value.

## Requirements

**Header:** PFTitleDataManagementTypes.h

## See also

[PFTitleDataManagementTypes members](/services/playfab/api-references/c/pftitledatamanagementtypes/pftitledatamanagementtypes_members)


## Related topics

- [PFTitleDataManagementServerSetPublisherDataAsync](/services/playfab/api-references/c/pftitledatamanagement/functions/pftitledatamanagementserversetpublisherdataasync.md)
- [Services C API overview - PFTitleDataManagementTypes.h](/services/playfab/api-references/c/pftitledatamanagementtypes/pftitledatamanagementtypes_members.md)
- [PFTitleDataManagementGetPublisherDataRequest](/services/playfab/api-references/c/pftitledatamanagementtypes/structs/pftitledatamanagementgetpublisherdatarequest.md)
- [PFTitleDataManagementServerGetPublisherDataAsync](/services/playfab/api-references/c/pftitledatamanagement/functions/pftitledatamanagementservergetpublisherdataasync.md)
- [PFTitleDataManagementClientGetPublisherDataAsync](/services/playfab/api-references/c/pftitledatamanagement/functions/pftitledatamanagementclientgetpublisherdataasync.md)
