Sending response value from one service as payload for another service?

I’m new to Kong gateway and trying to migrate from APIGEE. Is there any way to call a service and passing the response value in payload of another service in Kong gateway?

Hi There,

No this is not supported out of the box. However it may be possible with a custom plugin. Here is the link to custom-plugin development. Introduction - Kong Gateway | Kong Docs

Hello,
Yes, you can achieve this in Kong Gateway by using plugins like request-transformer and response-transformer. Use the request-transformer plugin to capture and store the response from the first service. The response-transformer plugin to modify the payload of the second service based on the stored response data.