05-29-2022 02:36 AM
Hi,
I was wondering how to capture the content of a PUT/POST call to update/insert the data into a database.
I know how to capture the URL through pipeline paramters (PATH_INFO) to make all my GET requests working but now I’m trying to find a way to capture the content of the PUT/POSt method.
I have searched for pipeline parameters but only found QUERY_STRING and it doesn’t capture the content.
Anyone knows a solution to this?
Regards
Jens
Solved! Go to Solution.
05-29-2022 11:32 PM
Hi @JensDeveloper,
It can be achieved in two ways-
In Pipeline-
Response from postman
For both the case, if you want to capture entire payload, you can use “$” instead of $name.
05-29-2022 11:32 PM
Hi @JensDeveloper,
It can be achieved in two ways-
In Pipeline-
Response from postman
For both the case, if you want to capture entire payload, you can use “$” instead of $name.
05-30-2022 09:34 AM
Thanks a lot, this will help me immense. Now I understand it.
Regards Jens