spring-boot-microservices-series-v2
spring-boot-microservices-series-v2 copied to clipboard
expose endpoint to fetch orders by customer Id
As a customer, I would like to see the status of the orders created.
Technical Implementation:
In Order-service microservice we have order details, hence an endpoint should be exposed here which queries by customerId. Change the response of the Object to include created Date. Have a paginated API to give response.
Once this is done, we should expose endpoint in payment-service to call this endpoints
Exposing API in payment-service is pending.