Skip to content
Snippets Groups Projects

Updated market category GET call with missing params and paths

Merged Ghost User requested to merge github/fork/autumnfound/malowe/master/market-cat-fix into master
1 file
+ 20
1
Compare changes
  • Side-by-side
  • Inline
+ 20
1
@@ -231,7 +231,7 @@ paths:
500:
description: Error while retrieving data
/markets/{marketID}/categories/{$categoryID}:
/markets/{marketID}/categories/{categoryID}:
parameters:
- name: marketID
in: path
@@ -241,6 +241,25 @@ paths:
type: integer
format: int32
minimum: 1
- name: categoryID
in: path
description: Unique ID of an individual category for market
required: true
schema:
type: integer
format: int32
minimum: 1
get:
summary: Category in context of market
responses:
200:
description: Success
content:
application/json:
schema:
$ref: "#/components/schemas/Market"
500:
description: Error while retrieving data
/categories:
get:
Loading