OpenAPI spec to HTTP request #3323
Replies: 1 comment
-
Please take a look at some sites that list different tools: We avoid recommending specific tools here in order to keep the specification neutral. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
OpenAPI specification describes URL path, the HTTP method, the body of the request (if needed), the parameters (if needed), the properties (if needed), etc.
For instance, for the OpenAPI specification below
The corresponding HTTP request is for the
/stub
path, usingPATCH
HTTP method and the request body is a JSON{"name":"some name"}
.Is there any tool that reads OpenAPI specification file and issue a request per the specification or returns an HTTP request object (of some sort)?
Beta Was this translation helpful? Give feedback.
All reactions