Interceptor Microservice

Interceptor microservice defines your logic of the transformation. You can update the payload body, headers and trailers of the request to/response from the backend. You can also use interceptors to directly respond to the client without letting the request reach the backend or even dynamically change the endpoint of the request.

Use the following Open API Definition to build your interceptor service with a programming language of your choice.

Choreo Connect Router makes requests to your interceptor service in the following paths. You can define which handler (request/response) should be get called, which information should be included in the request body of the interceptor service when Defining Interceptors in an OpenAPI Definition

  1. Request Flow Interceptor
  2. Response Flow Interceptor
Top