I use this code on my iPad Air to call my Azure function DeleteAccountSendEmail:
var result = await PlayFabCloudScriptAPI.ExecuteFunctionAsync(new ExecuteFunctionRequest()
{
Entity = new PlayFab.CloudScriptModels.EntityKey()
{
Id = entityid,
Type = entitytype,
},
FunctionName = "DeleteAccountSendEmail",
FunctionParameter = new { SessionTicket = sessionticket, Deviceid = deviceid, Loginemail = loginemail, Language = language },
GeneratePlayStreamEvent = true
});
sessionticket, deviceid, loginemail and language are from type string.
How can I enter the same function parameters in Visual Studio Code in Thunder Client so that I can call my Azure function DeleteAccountSendEmail for testing purposes on my laptop?
