I want to rename and re-route controllers to make them more "RESTful", and I encountered a problem. Let's say I have ItemsController, the route is api/items. Then I have VersionsController, api/versions. I also have VersionItemsConroller, which is a separate entity. And I also have a controller with this route: api/versions/{versionId:int}/items for, let's say, getting items of specific version (or anything that involves operations with items that are related to specific version), and I don't know how to properly name it, since VersionItemsMappingController seems ugly. Is there a naming convention or some kind of best practice for such cases?
How do I name controllers which are related to multiple entities in REST?
80 Views Asked by Jamil At
1
There are 1 best solutions below
Related Questions in ASP.NET-MVC
- I have a problem outputing the roles on the page ListRoles.cshtml
- Dropdown list showing SQLServer2005SQLBrowserUser$DONSERVER instead of Active Directory group name in ASP.NET MVC C#
- Hosting ASP.NET MVC application on IIS web server using Windows 2019 server
- How to display only department fields associated with a selected department in student automation system?
- How to send select input data for form submission?
- Multi level project reference using dll
- How to upload file to Onedrive using ASP.NET MVC?
- ASP.NET MVC web app looping between fields only on some devices
- Is there any automatic job to load AD-groups?
- How to restrict admin js files to download
- Download PDF in ASP.NET MVC application
- How to add bootstrap theme/example into ASP.NET MVC 5?
- Web API works with Windows authentication enabled when consumed via Swagger but throws an unauthorized issue when accessed through web app
- ASP.Net Core 7.0 Web App (Model-View-Controller) ErrorViewModel OnGet OnPost do not get called or executed
- OAuth 2.0 keep getting Authorization has been denied for this request
Related Questions in REST
- Query parameter works fine with fastapi application when tested locally but not working when the FastAPI application is deployed on AWS lambda
- Add an http GET/POST entry point to a Django with channels websocket
- Difficulty creating a data pipeline with Fabric Datafactory using REST
- Flutter connection to a local api
- Accessing REST API Status Codes using Azure Data Factory Copy Activity (or similar)?
- Mass Resource deletion in REST
- why when I check endpoint /tasks, an error always appears "error : invalid token" even though I have entered the appropriate token that I got
- How to prevent users from creating custom client apps?
- How to create a REST API with .NET Framework?
- Efficiently Handling Large Number of API Calls with Delphi 10.4 and OmniThreadLibrary
- Put Request throwing 401 [no body] Unauthorized
- Converting img src data to octet-stream
- Implementing Email Verification and Notification System in a Full-Stack Application with React Frontend and Node Backend
- Micronaut - Add Controller from external library
- Moving Template or OVA to Datastore using vCenter API
Related Questions in CONTROLLER
- godot lean mechanic makes camera glitch
- Why Jackson needs a default constructor?
- How to convert an HTML string to an escaped one?
- how to connect acb-004 controller using python
- Store files on gdrive from controller
- Laravel form action not accepting $order->id but accepting hard coded value
- Input Field Required
- Can you help a tag look at the static resource path without looking at the controller
- Reuse controller paths for a Spring Boot Controller
- How do i change a single value data into an array table in Laravel Jetstream vue stack?
- No route found in Shopware6/symfony
- Player sprite not changing when moving left or right when using a Playstation 5 Controller, but sprite changing when using keyboard controls
- problem with laravel view not extending layout.blade.php with out assets file . What can possibly be the problem?
- How apply machine learning code to ryu controller
- Nginx custom error page unexpected error reading return code: strconv.Atoi: parsing "": invalid syntax. Using 404
Related Questions in NAMING-CONVENTIONS
- What is the naming convention in Python for asynchronous functions?
- Why do most Azure naming conventions include the resource type in the name?
- useReducer naming conventions
- Python script won't skip past files that match naming convention set in file renaming program
- Issue changing Pylint naming convention in VS Code
- camelCase naming convention not working while returning response
- What does $$[T] mean in method name
- Power Automate, Attempting to add an action that will paste in and rename an export file according to the previous business day in the MM.DD format
- What is the term for a colon before a suite in Python syntax?
- What is the convention for naming C# files that contain extension methods?
- Prisma and Types: Confused about Naming Conventions
- Nested system naming convention in Common Lisp using ASDF?
- How do I reference a lookup table that might not contain the looked up record?
- How distinguish stage of infra vs stage of software in naming convention (IaC)
- How to configure editorconfig file to allow units of measurement after variable names?
Related Questions in NAMING
- How do I name a macro button by means of referencing a cell within the spreadsheet e.g. cell B1 will be the name of the spreadsheet
- Associated type (type parameter) naming convention
- naming urls : good practices
- How to register celery class based task with a custom name in 5.x?
- REST APIs to demonstrate borrowed books and users from library
- Which url name should be used for api performing the membership withdrawal function
- Variable or pattern name for method arguments as both input and output parameter
- Error when attempting to set a Worksheet name from a user defined list
- Conventions for Swift protocols
- Naming classes on a framework that present multiple platforms
- Where ReSharper naming rule is defined which prohibits using the prefix "Default" in type names, property names, constant names...?
- how to name a Master on a raspberry
- What is the difference between Resolver and Service in java
- How do I name controllers which are related to multiple entities in REST?
- Name of the algorithm for choosing an element from a list based on its "width"
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Since
api/versions/{versionId:int}/itemsis about getting items of a specific version, it is better to place the appropriate method to theVersionsController.Thus, the entire structure will look like this:
ItemsController:
api/itemsVersionsController:
api/versionsapi/versions/{versionId:int}/itemsVersionItemsConroller:
api/version-tems