We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Is there a way to pass an API key as a query parameter as in this example OpenAPI snippet?
{ "openapi": "3.0.0", "components": { "securitySchemes": { "api_key": { "type": "apiKey", "in": "query", "name": "api_key", } }, } }