python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
How to display Body type in Swagger (OAS3) for GET requests?
So i'm working on some APIs (Spring Boot)where I have both input and output of type XML. For documenting, I'm using Swagger (OpenAPI 3). Here is the controller:
@RestController
@Validated
@RequestMapp...
Andrei Manolache
Votes: 0
Answers: 1
is it a bad practice to add a restpoint some verb in the path in order to distinguish two identical respoints?
Having the entity Client and a rest api for it, I can think of two restpoint PATCH methods, one from a screen that modifies just some attributes and the other from calling a webservice that register a...
fernando1979
Votes: 0
Answers: 1
How to determine http verb allowed on a .net function using ildasm
I have a .net DLL which has web api end points with http verb decoration. And I only have ildasm disassembler to view IL code. How can I check what http verb is allowed for an endpoint(a particular Co...
Mahen
Votes: 0
Answers: 1
How to design DELETE REST API that requires lots of data?
I want to implement a DELETE REST API. But I need the option to provide a list of IDs to be deleted. This list could be arbitrarily long and may not fit within a URL.
I know POST supports this, but su...
Jonathan Wood
Votes: 0
Answers: 2