Skip to content

Commit

Permalink
Correct parameter location
Browse files Browse the repository at this point in the history
These are in the query not the body
  • Loading branch information
jcoyne committed Sep 10, 2019
1 parent edf3f77 commit 1484ae2
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions openapi.json
Expand Up @@ -230,13 +230,13 @@
"parameters": [
{
"name": "barcode",
"in": "body",
"in": "query",
"description": "barcode of an item",
"required": false,
},
{
"name": "catkey",
"in": "body",
"in": "query",
"description": "catalog identifier of an item",
"required": false,
}
Expand All @@ -259,13 +259,13 @@
"parameters": [
{
"name": "barcode",
"in": "body",
"in": "query",
"description": "barcode of an item",
"required": false,
},
{
"name": "catkey",
"in": "body",
"in": "query",
"description": "catalog identifier of an item",
"required": false,
}
Expand All @@ -288,7 +288,7 @@
"parameters": [
{
"name": "barcode",
"in": "body",
"in": "query",
"description": "barcode of an item",
"required": false,
}
Expand Down

0 comments on commit 1484ae2

Please sign in to comment.