The value of the 'content' field
See original GitHub issue{ "activityId": "cd3a8a78-d3c3-43ee-8b3e-5685c41810d8", "displayName": "Send HTTP Request", "name": "resName", "type": "SendHttpRequest", "properties": [ { "name": "Url", "value": "https://partnerdev-******/q" }, { "name": "Method", "value": "POST" }, { "name": "Content", "value": "System.Dynamic.ExpandoObject" }, { "name": "ContentType", "value": "application/json" }, { "name": "Authorization", "value": null }, { "name": "RequestHeaders", "value": {} }, { "name": "ReadContent", "value": true }, { "name": "SupportedStatusCodes", "value": [ 200 ] } ], "outcomes": [ "Done" ], "persistWorkflow": false, "saveWorkflowContext": false, "loadWorkflowContext": false }
The value of the ‘content’ field is ‘System.Dynamic.ExpandoObject’.
why? ? ?
Then I find the source code
[ActivityInput(Hint = "The HTTP content to send along with the request.", UIHint = ActivityInputUIHints.MultiLine, SupportedSyntaxes = new[] { SyntaxNames.JavaScript, SyntaxNames.Liquid })]
public string? Content { get; set; }
So
How do I convert strings to objects?
Issue Analytics
- State:
- Created 2 years ago
- Reactions:1
- Comments:16 (8 by maintainers)

Top Related StackOverflow Question
Closing this as solved, but feel free to follow up as you please.