-
Hi I've got few content items which values need to be updated whenever Http post is made to the workflow. I'd like to pass Content Item ID dynamically with body/headers through Http post same as I pass value to change. Thanks |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
You should be able to POST to the workflow endpoint with data in the body and then parse the body via |
Beta Was this translation helpful? Give feedback.
You should be able to POST to the workflow endpoint with data in the body and then parse the body via
deserializeRequestData()
. What I typically do is use a "Set Property Task" to deserialize the request data by setting the Value todeserializeRequestData();
. Then you have access to what was in the request body using something likeproperty('YourPropertyName').ContentItemId
in that "Content Item ID" field you show in your screenshot.