question

maxime.savard@frimastudio.com avatar image
maxime.savard@frimastudio.com asked

Is it still not possible to delete Title Data from playfab's REST API?

I've found a thread from 2020 stating that the REST api does not support Title Data deletion but after that I found another one from 2021 that says that we can do it with the Unity Playfab Extension

I'd assume that the Unity Extension uses the API so I would like to ask again if it is possible to delete Title Data from it?

Thanks!

Title Data
10 |1200

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.

1 Answer

·
Made Wang avatar image
Made Wang answered

Refer to Title-Wide Data Management - Set Title Data - REST API (PlayFab Server) | Microsoft Docs, you can set the value to null to delete the title data.

        PlayFabServerAPI.SetTitleData(new SetTitleDataRequest
        {
            Key = "test",
            Value = null
        },
        (result) =>
        {
            Debug.Log("delete success");
        },
        (error) =>
        {
            Debug.LogError(error.GenerateErrorReport());
        });
10 |1200

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.

Write an Answer

Hint: Notify or tag a user in this post by typing @username.

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.