Your question may already have an answer on the community forum. Please search for related topics, and then read through the guidelines before creating a new topic.
I’m using an OpenAPI 3.0 JSON schema for my API - I have checked my schema in https://editor.swagger.io/ and don’t see any issues, but am not seeing a section for parameters for any of my endpoints in my API documentation
schema:
"/api/alerts": {
"get": {
"summary": "Get alerts",
"description": "Returns the first 100 alerts by default - use the count parameter to view more results",
"tags": [
"alerts"
],
"parameters": [
{
"name": "count",
"in": "query",
"description": "set value to over 100 to view more than the first 100 results",
"schema": {"type": "integer", "default": 100},
"required": false
},
{
"name": "offset",
"in": "query",
"schema": {"type": "integer", "default": 0},
"required": false
},
{
"name": "sort",
"in": "query",
"schema": {"type": "string"},
"required": false
},
{
"name": "q",
"in": "query",
"schema": {"type": "string"},
"required": false
}
],
SS from Swagger Editor with valid parameters section
SS of Postman documentation missing the parameters:
From viewing other public Postman API documentations, it seems like there should be a section that lists all the parameters for me - would appreciate help on figuring it out why it’s not displaying
Postman App version is Version 7.36.1 (7.36.1)