Is there support within Orchestration Designer (8.1.2.1201) for a REST wsop, using PUT, to send json in the Message Body field? It appears that the Message Body section is expecting XML as the default. Is there a way to provide a json message instead in the body?
REST wsop - JSON body format
Collapse
X
-
Set the Content-Type Header: This is the most crucial step. You need to explicitly tell the receiving REST API that you are sending JSON data. In your REST wsop configuration within Orchestration Designer, you'll need to add a header:- Header Name: Content-Type
- Header Value: application/json
This header informs the server that the body of your request is in JSON format, not XML or something else.
Comment
Comment