Retrieve a list of all available Kafka exchanges configured in the mock adapter service. This endpoint provides information about active Kafka message exchanges that can be used for testing and development purposes.
Authentication
This endpoint requires authentication via Bearer token.
Bearer token for API authentication. Format: Bearer YOUR_API_TOKEN
The user context for the request execution. Used for audit and tracking purposes.
Cache control directive. Use no-cache to bypass caching.
Content type that the client can accept. Supports */* for all types.
Acceptable encoding methods for response compression. Supports gzip, deflate, br.
Request Example
curl -X GET '{MOCK_ADAPTER_URL}/api/kafka-exchanges' \
-H 'Authorization: Bearer YOUR_API_TOKEN' \
-H 'EXECUTION-USER: upload_user' \
-H 'Cache-Control: no-cache' \
-H 'Accept: */*' \
-H 'Accept-Encoding: gzip, deflate, br'