Transformations
When setting up a proxy in Shopranos, you can use request and response transformations to modify data before it's sent to an external URL or after it's received. This allows you to tailor the payloads to fit specific requirements and handle data more effectively.In this example, the incoming request payload is transformed before being sent to the external service. The transformation extracts SKUs from the request and structures the data according to the external API's requirements.In this response transformation example, the data received from the external service is transformed into the format expected by Shopranos. This involves extracting pricing information, calculating net prices, and mapping the data to a new structure.In Shopranos, there is a "Test Request Transformation" flag. If this flag is checked, the transformed request payload will be returned directly for testing purposes. This helps you verify that the request transformation is generating the correct payload while you are developing.Request Transformation: The Result
variable holds the payload after the request transformation.
Response Transformation: The Result
variable contains the final response that will be returned to the client after the transformation.
Key Points:#
Request Transformation: Modify the request before it is sent to the external service.
Response Transformation: Modify the response before it is returned to the client.
Testing: Use the test feature to verify your transformations during development.
These transformations provide flexibility to adapt the data structure to match both external service requirements and internal Shopranos expectations. Modified at 2024-08-26 09:55:16