Hi all,
I have created an Action with an input parameter of type EntityReference - (Contact Entity).
I want to execute this Action using Web Api C#. I have tried the below code - but I was getting 400 Bad Request message. Can someone help me?
JObject actInputParams = new JObject();
actInputParams.Add("recipientParm", new Guid("49A0E5B9-88DF-E311-B8E5-6C3BE5A8B200"));
HttpResponseMessage actionResponse =
await httpClient.SendAsJsonAsync(HttpMethod.Post, "api/data/v8.2/new_sampleAction", actInputParams);
*This post is locked for comments
I have the same question (0)