I’m using a serverless micro services architecture and have multiple REST API GWs. All APIs are mapped using Custom Domain to a base URL. For example: API1 -> api.myDomain.com/v1/items API2 -> api.myDomain.com/v1/students
We have a new service we would like to map using uri parameters. For example: API3 -> api.myDomain.com/v1/students/{id}/classes
Is it possible to do so using custom domain mapping? If not, is there a work around?
Thank you!