Here is a simple example:
<code>openapi: "3.0.0"
info:
version: "1.0.0"
title: "Simple API"
paths:
/hello:
get:
parameters:
- name: "name"
in: "query"
required: true
schema:
type: "string"
responses:
'200':
description: "done"
</code>
<code>openapi: "3.0.0"
info:
version: "1.0.0"
title: "Simple API"
paths:
/hello:
get:
parameters:
- name: "name"
in: "query"
required: true
schema:
type: "string"
responses:
'200':
description: "done"
</code>
openapi: "3.0.0"
info:
version: "1.0.0"
title: "Simple API"
paths:
/hello:
get:
parameters:
- name: "name"
in: "query"
required: true
schema:
type: "string"
responses:
'200':
description: "done"
In the swagger editor, the endpoint appears as GET /hello
Is it possible to have the url to look something similar to GET /hello?name=<name>
?