Hi,
When I call IOM IMS from Postman I put message payload in the body.
When I call ION API flow endpoint from Postman I put all parameters into URL.
Is it possible to call ION API flow endpoint with payload in the body?
Regards,
Kirill
An API Flow has 4 Methods: GET, POST, PUT or DELETE.
When selecting POST, PUT or DELETE you can define the request Body and use that to sent data to the API call, which is more safe as the parameters are part of the request body.
Create Request body named Person and using https://json-schema.org/learn/miscellaneous-examples.html for Schema and Example. Response body contains then:
{"SomeOtherParameter": "${YourAPICall.Body}","Person":"${input.Person}"}
In Postman call this API Flow using the Data from the example and it will respond with that too.
Thanks Christiaan!