Hi,
Firstly thank you for the hard work that has gone into providing this standard, long may it continue .
I am new to this, about 1 week of usage and trying to understand and I would like to know the best practice for managing non rest actions. As an example, I have a system that can CRUD rooms, however, there is a need to batch create rooms. Naturally (i think) I would use GET/POST/PATCH/DELETE on the /rooms route and provide the relevant json (where applicable) what strategy should I use to do a batch action. The action would create Rooms with a parameter Quantity used to loop and create that many rooms. I assume i would return the rooms created in the response but do not know the best structure for the request.
Many thanks