Hi all,I have the requirement to replicate certain services, with functionality and endpoint already defined. The problem is that when creating a web api it does not allow to use the character "/" to compose the URL, which makes it impossible for me to replicate certain URLs. For example: /add/vehicleI know I could use the "add-vehicle" variant, but it is imperative to keep the same structure for the other systems.Is there any possibility to do this in Appian?
Thanks in advanced!
Discussion posts and replies are publicly visible
Sure. API endpoints in Appian can not include a path like your /add/vehicle. But that path is available to you inside the API. So you need some logic working with the path to identify the requested action.
In the end, you will have one API that handles all the paths you need.