Hello all,
I am working on API proxy where when I hit the postman with request body , it is exactly same as Apigee request body. For example,
Existing Code : Client(“birthDate”:“yy-mm-ddTimeZone”) → Apigee(“birthDate”:“yy-mm-ddTimeZone”)
But I have to change the request when sent to Target Server
Expected Change: Client(“birthDate”:“yy-mm-ddTimeZone”) → Apigee(“birthDateStr”:“yy-mm-dd”)
I am trying to make this change by assigning the message in Preflow. But I am not sure how exactly I should make changes to send the request.
Can anyone please help with this ?