Compare commits
12 Commits
dacc6cade4
...
master
| Author | SHA1 | Date | |
|---|---|---|---|
| eb8630ff24 | |||
| 2960d1bd36 | |||
| 6eda09efbe | |||
| dc1751b852 | |||
| 760da37fe3 | |||
| adb589ef49 | |||
| fbcb1ff6bb | |||
| 68eca53428 | |||
| 694582091b | |||
| 254d3b09ae | |||
| 1c7255fa72 | |||
| 574b8caf49 |
@@ -27,3 +27,4 @@ https://docs.hetzner.cloud/
|
|||||||
https://opensource.zalando.com/restful-api-guidelines
|
https://opensource.zalando.com/restful-api-guidelines
|
||||||
https://kubernetes.io/docs/reference/using-api/api-concepts
|
https://kubernetes.io/docs/reference/using-api/api-concepts
|
||||||
https://docs.stripe.com/api/prices
|
https://docs.stripe.com/api/prices
|
||||||
|
https://developer.clickup.com/docs/authentication
|
||||||
|
|||||||
@@ -4193,6 +4193,7 @@ components:
|
|||||||
- "GuidOnlineSchedulerService"
|
- "GuidOnlineSchedulerService"
|
||||||
- "GuidBranch"
|
- "GuidBranch"
|
||||||
- "IsDefault"
|
- "IsDefault"
|
||||||
|
- "Hints"
|
||||||
properties:
|
properties:
|
||||||
Guid:
|
Guid:
|
||||||
type: "string"
|
type: "string"
|
||||||
@@ -4202,6 +4203,22 @@ components:
|
|||||||
type: "string"
|
type: "string"
|
||||||
IsDefault:
|
IsDefault:
|
||||||
type: "string"
|
type: "string"
|
||||||
|
Hints:
|
||||||
|
type: "array"
|
||||||
|
items:
|
||||||
|
type: "object"
|
||||||
|
required:
|
||||||
|
- "AttentionLevel"
|
||||||
|
- "Hint"
|
||||||
|
properties:
|
||||||
|
AttentionLevel:
|
||||||
|
type: "string"
|
||||||
|
enum:
|
||||||
|
- "Low"
|
||||||
|
- "Mid"
|
||||||
|
- "High"
|
||||||
|
Hint:
|
||||||
|
type: "string"
|
||||||
_HashValue:
|
_HashValue:
|
||||||
$ref: "#/components/schemas/_HashValue"
|
$ref: "#/components/schemas/_HashValue"
|
||||||
example:
|
example:
|
||||||
@@ -4262,6 +4279,7 @@ components:
|
|||||||
- "UsersMayEnterANewLicenceTag"
|
- "UsersMayEnterANewLicenceTag"
|
||||||
- "IsConnectedWithATyreStorage"
|
- "IsConnectedWithATyreStorage"
|
||||||
- "DeadlineTimeInSecondsSinceMidnight"
|
- "DeadlineTimeInSecondsSinceMidnight"
|
||||||
|
- "DeadlineTimeInSecondsSinceMidnight"
|
||||||
properties:
|
properties:
|
||||||
Guid:
|
Guid:
|
||||||
type: "string"
|
type: "string"
|
||||||
@@ -4286,6 +4304,16 @@ components:
|
|||||||
type: "boolean"
|
type: "boolean"
|
||||||
DeadlineTimeInSecondsSinceMidnight:
|
DeadlineTimeInSecondsSinceMidnight:
|
||||||
type: "integer"
|
type: "integer"
|
||||||
|
RedirectUrlType:
|
||||||
|
type: "string"
|
||||||
|
enum:
|
||||||
|
- "None"
|
||||||
|
- "NewTab"
|
||||||
|
- "SameTab"
|
||||||
|
RedirectUrl:
|
||||||
|
type: "string"
|
||||||
|
RedirectUrlShallBeShownAsOptionalButton:
|
||||||
|
type: "boolean"
|
||||||
_HashValue:
|
_HashValue:
|
||||||
$ref: "#/components/schemas/_HashValue"
|
$ref: "#/components/schemas/_HashValue"
|
||||||
example:
|
example:
|
||||||
|
|||||||
734
src/v2/shop.yaml
734
src/v2/shop.yaml
@@ -1,7 +1,7 @@
|
|||||||
openapi: 3.0.0
|
openapi: 3.0.0
|
||||||
info:
|
info:
|
||||||
title: "TyrePro-API, Shop"
|
title: "TyrePro-API, Shop"
|
||||||
version: "Version 12"
|
version: "Version 19"
|
||||||
servers:
|
servers:
|
||||||
- url: "https://musterreifen.com/api/shop"
|
- url: "https://musterreifen.com/api/shop"
|
||||||
description: "Development server, customers domain"
|
description: "Development server, customers domain"
|
||||||
@@ -71,29 +71,9 @@ paths:
|
|||||||
tags:
|
tags:
|
||||||
- "General"
|
- "General"
|
||||||
parameters:
|
parameters:
|
||||||
- name: "GuidCart"
|
- $ref: "#/components/parameters/GuidBranch"
|
||||||
in: "query"
|
- $ref: "#/components/parameters/GuidCalculationProfile"
|
||||||
required: true
|
- $ref: "#/components/parameters/GuidCart"
|
||||||
schema:
|
|
||||||
type: "string"
|
|
||||||
default: null
|
|
||||||
example: "ebb89e89-8d25-809e-7814-c53b686ae164"
|
|
||||||
- name: "GuidBranch"
|
|
||||||
description: "Required for providing stock and price information."
|
|
||||||
in: "query"
|
|
||||||
required: true
|
|
||||||
schema:
|
|
||||||
type: "string"
|
|
||||||
default: null
|
|
||||||
example: "ebb89e89-8d25-809e-7814-c53b686ae164"
|
|
||||||
- name: "GuidCalculationProfile"
|
|
||||||
description: "If provided, the prices will base on this profile."
|
|
||||||
in: "query"
|
|
||||||
required: false
|
|
||||||
schema:
|
|
||||||
type: "string"
|
|
||||||
default: null
|
|
||||||
example: "ebb89e89-8d25-809e-7814-c53b686ae164"
|
|
||||||
responses:
|
responses:
|
||||||
200:
|
200:
|
||||||
description: "successful operation"
|
description: "successful operation"
|
||||||
@@ -163,29 +143,9 @@ paths:
|
|||||||
tags:
|
tags:
|
||||||
- "General"
|
- "General"
|
||||||
parameters:
|
parameters:
|
||||||
- name: "GuidCart"
|
- $ref: "#/components/parameters/GuidBranch"
|
||||||
in: "query"
|
- $ref: "#/components/parameters/GuidCalculationProfile"
|
||||||
required: true
|
- $ref: "#/components/parameters/GuidCart"
|
||||||
schema:
|
|
||||||
type: "string"
|
|
||||||
default: null
|
|
||||||
example: "ebb89e89-8d25-809e-7814-c53b686ae164"
|
|
||||||
- name: "GuidBranch"
|
|
||||||
description: "Required for providing stock and price information."
|
|
||||||
in: "query"
|
|
||||||
required: true
|
|
||||||
schema:
|
|
||||||
type: "string"
|
|
||||||
default: null
|
|
||||||
example: "ebb89e89-8d25-809e-7814-c53b686ae164"
|
|
||||||
- name: "GuidCalculationProfile"
|
|
||||||
description: "If provided, the prices will base on this profile."
|
|
||||||
in: "query"
|
|
||||||
required: false
|
|
||||||
schema:
|
|
||||||
type: "string"
|
|
||||||
default: null
|
|
||||||
example: "ebb89e89-8d25-809e-7814-c53b686ae164"
|
|
||||||
responses:
|
responses:
|
||||||
200:
|
200:
|
||||||
description: "successful operation"
|
description: "successful operation"
|
||||||
@@ -493,6 +453,20 @@ paths:
|
|||||||
- $ref: "#/components/parameters/GuidOffset"
|
- $ref: "#/components/parameters/GuidOffset"
|
||||||
- $ref: "#/components/parameters/GuidHubBoreHole"
|
- $ref: "#/components/parameters/GuidHubBoreHole"
|
||||||
- $ref: "#/components/parameters/GuidManufacturer"
|
- $ref: "#/components/parameters/GuidManufacturer"
|
||||||
|
- $ref: "#/components/parameters/GuidMotorcycleManufacturer"
|
||||||
|
- $ref: "#/components/parameters/GuidMotorcycleDisplacement"
|
||||||
|
- $ref: "#/components/parameters/GuidMotorcycleModel"
|
||||||
|
- $ref: "#/components/parameters/GuidBranch"
|
||||||
|
- $ref: "#/components/parameters/SearchTerm2"
|
||||||
|
- $ref: "#/components/parameters/GuidWidth2"
|
||||||
|
- $ref: "#/components/parameters/GuidSection2"
|
||||||
|
- $ref: "#/components/parameters/GuidDiameter2"
|
||||||
|
- $ref: "#/components/parameters/GuidSpeedIndex2"
|
||||||
|
- $ref: "#/components/parameters/GuidLoadIndex2"
|
||||||
|
- $ref: "#/components/parameters/GuidHoleCount2"
|
||||||
|
- $ref: "#/components/parameters/GuidHoleCircle2"
|
||||||
|
- $ref: "#/components/parameters/GuidOffset2"
|
||||||
|
- $ref: "#/components/parameters/GuidHubBoreHole2"
|
||||||
- name: "Type"
|
- name: "Type"
|
||||||
description: "Provide the types you want to get. If this parameter is not provided, all types will be returned."
|
description: "Provide the types you want to get. If this parameter is not provided, all types will be returned."
|
||||||
in: "query"
|
in: "query"
|
||||||
@@ -514,14 +488,74 @@ paths:
|
|||||||
- "Offset"
|
- "Offset"
|
||||||
- "HubBoreHole"
|
- "HubBoreHole"
|
||||||
- "Manufacturer"
|
- "Manufacturer"
|
||||||
- name: "GuidBranch"
|
- "MotorcycleManufacturer"
|
||||||
description: "Required for providing stock and price information."
|
- "MotorcycleDisplacement"
|
||||||
|
- "MotorcycleModel"
|
||||||
|
- "Width2"
|
||||||
|
- "Section2"
|
||||||
|
- "Diameter2"
|
||||||
|
- "SpeedIndex2"
|
||||||
|
- "LoadIndex2"
|
||||||
|
- "HoleCount2"
|
||||||
|
- "HoleCircle2"
|
||||||
|
- "Offset2"
|
||||||
|
- "HubBoreHole2"
|
||||||
|
- name: "MaximumNumberOfOptions"
|
||||||
in: "query"
|
in: "query"
|
||||||
required: true
|
required: false
|
||||||
|
schema:
|
||||||
|
type: "integer"
|
||||||
|
default: 1000
|
||||||
|
example: 1000
|
||||||
|
responses:
|
||||||
|
200:
|
||||||
|
description: "successful operation"
|
||||||
|
headers:
|
||||||
|
Developer-Hint:
|
||||||
schema:
|
schema:
|
||||||
type: "string"
|
type: "string"
|
||||||
default: null
|
description: "To prevent data intense calls, we may manipulate your request. If so, you get a hint here, what exactly we've done."
|
||||||
example: "ebb89e89-8d25-809e-7814-c53b686ae164"
|
content:
|
||||||
|
application/json:
|
||||||
|
schema:
|
||||||
|
type: "array"
|
||||||
|
items:
|
||||||
|
$ref: "#/components/schemas/Filter"
|
||||||
|
default:
|
||||||
|
$ref: "#/components/responses/GenericError"
|
||||||
|
security:
|
||||||
|
- SessionScheme: []
|
||||||
|
/Filters2:
|
||||||
|
get:
|
||||||
|
tags:
|
||||||
|
- "Search"
|
||||||
|
parameters:
|
||||||
|
- $ref: "#/components/parameters/GuidOnlineService"
|
||||||
|
- $ref: "#/components/parameters/GuidBranch"
|
||||||
|
- $ref: "#/components/parameters/SearchTerm1"
|
||||||
|
- $ref: "#/components/parameters/SearchTerm2"
|
||||||
|
- $ref: "#/components/parameters/GuidMaterialType"
|
||||||
|
- $ref: "#/components/parameters/GuidVehicleType"
|
||||||
|
- $ref: "#/components/parameters/GuidWidth"
|
||||||
|
- $ref: "#/components/parameters/GuidSection"
|
||||||
|
- $ref: "#/components/parameters/GuidDiameter"
|
||||||
|
- $ref: "#/components/parameters/GuidSpeedIndex"
|
||||||
|
- $ref: "#/components/parameters/GuidLoadIndex"
|
||||||
|
- $ref: "#/components/parameters/GuidHoleCount"
|
||||||
|
- $ref: "#/components/parameters/GuidHoleCircle"
|
||||||
|
- $ref: "#/components/parameters/GuidOffset"
|
||||||
|
- $ref: "#/components/parameters/GuidHubBoreHole"
|
||||||
|
- $ref: "#/components/parameters/GuidManufacturer"
|
||||||
|
- $ref: "#/components/parameters/GuidMotorcycleManufacturer"
|
||||||
|
- $ref: "#/components/parameters/GuidMotorcycleDisplacement"
|
||||||
|
- $ref: "#/components/parameters/GuidMotorcycleModel"
|
||||||
|
- name: "MaximumNumberOfOptions"
|
||||||
|
in: "query"
|
||||||
|
required: false
|
||||||
|
schema:
|
||||||
|
type: "integer"
|
||||||
|
default: 200
|
||||||
|
example: 200
|
||||||
responses:
|
responses:
|
||||||
200:
|
200:
|
||||||
description: "successful operation"
|
description: "successful operation"
|
||||||
@@ -530,7 +564,7 @@ paths:
|
|||||||
schema:
|
schema:
|
||||||
type: "array"
|
type: "array"
|
||||||
items:
|
items:
|
||||||
$ref: "#/components/schemas/Filter"
|
$ref: "#/components/schemas/Filter2"
|
||||||
default:
|
default:
|
||||||
$ref: "#/components/responses/GenericError"
|
$ref: "#/components/responses/GenericError"
|
||||||
security:
|
security:
|
||||||
@@ -592,24 +626,14 @@ paths:
|
|||||||
- $ref: "#/components/parameters/GuidOffset"
|
- $ref: "#/components/parameters/GuidOffset"
|
||||||
- $ref: "#/components/parameters/GuidHubBoreHole"
|
- $ref: "#/components/parameters/GuidHubBoreHole"
|
||||||
- $ref: "#/components/parameters/GuidManufacturer"
|
- $ref: "#/components/parameters/GuidManufacturer"
|
||||||
|
- $ref: "#/components/parameters/GuidMotorcycleManufacturer"
|
||||||
|
- $ref: "#/components/parameters/GuidMotorcycleDisplacement"
|
||||||
|
- $ref: "#/components/parameters/GuidMotorcycleModel"
|
||||||
- $ref: "#/components/parameters/BinaryObjectContentType"
|
- $ref: "#/components/parameters/BinaryObjectContentType"
|
||||||
- $ref: "#/components/parameters/GuidDeliveryType"
|
- $ref: "#/components/parameters/GuidDeliveryType"
|
||||||
- name: "GuidBranch"
|
- $ref: "#/components/parameters/GuidBranch"
|
||||||
description: "Required for providing stock and price information."
|
- $ref: "#/components/parameters/GuidCalculationProfile"
|
||||||
in: "query"
|
- $ref: "#/components/parameters/GuidShopArticleConfig"
|
||||||
required: true
|
|
||||||
schema:
|
|
||||||
type: "string"
|
|
||||||
default: null
|
|
||||||
example: "ebb89e89-8d25-809e-7814-c53b686ae164"
|
|
||||||
- name: "GuidCalculationProfile"
|
|
||||||
description: "If provided, the prices will base on this profile."
|
|
||||||
in: "query"
|
|
||||||
required: false
|
|
||||||
schema:
|
|
||||||
type: "string"
|
|
||||||
default: null
|
|
||||||
example: "ebb89e89-8d25-809e-7814-c53b686ae164"
|
|
||||||
responses:
|
responses:
|
||||||
200:
|
200:
|
||||||
description: "successful operation"
|
description: "successful operation"
|
||||||
@@ -628,33 +652,6 @@ paths:
|
|||||||
$ref: "#/components/responses/GenericError"
|
$ref: "#/components/responses/GenericError"
|
||||||
security:
|
security:
|
||||||
- SessionScheme: []
|
- SessionScheme: []
|
||||||
/ShopArticleInformations:
|
|
||||||
get:
|
|
||||||
tags:
|
|
||||||
- "Search"
|
|
||||||
parameters:
|
|
||||||
- $ref: "#/components/parameters/BinaryObjectContentType"
|
|
||||||
- $ref: "#/components/parameters/GuidOnlineService"
|
|
||||||
- name: "GuidShopArticle"
|
|
||||||
in: "query"
|
|
||||||
required: true
|
|
||||||
schema:
|
|
||||||
type: "string"
|
|
||||||
default: null
|
|
||||||
example: "ebb89e89-8d25-809e-7814-c53b686ae164"
|
|
||||||
responses:
|
|
||||||
200:
|
|
||||||
description: "successful operation"
|
|
||||||
content:
|
|
||||||
application/json:
|
|
||||||
schema:
|
|
||||||
type: "array"
|
|
||||||
items:
|
|
||||||
$ref: "#/components/schemas/ShopArticleInformation"
|
|
||||||
default:
|
|
||||||
$ref: "#/components/responses/GenericError"
|
|
||||||
security:
|
|
||||||
- SessionScheme: []
|
|
||||||
/ShopArticlePairs:
|
/ShopArticlePairs:
|
||||||
get:
|
get:
|
||||||
tags:
|
tags:
|
||||||
@@ -674,74 +671,24 @@ paths:
|
|||||||
- $ref: "#/components/parameters/GuidOffset"
|
- $ref: "#/components/parameters/GuidOffset"
|
||||||
- $ref: "#/components/parameters/GuidHubBoreHole"
|
- $ref: "#/components/parameters/GuidHubBoreHole"
|
||||||
- $ref: "#/components/parameters/GuidManufacturer"
|
- $ref: "#/components/parameters/GuidManufacturer"
|
||||||
|
- $ref: "#/components/parameters/GuidMotorcycleManufacturer"
|
||||||
|
- $ref: "#/components/parameters/GuidMotorcycleDisplacement"
|
||||||
|
- $ref: "#/components/parameters/GuidMotorcycleModel"
|
||||||
- $ref: "#/components/parameters/BinaryObjectContentType"
|
- $ref: "#/components/parameters/BinaryObjectContentType"
|
||||||
- $ref: "#/components/parameters/GuidDeliveryType"
|
- $ref: "#/components/parameters/GuidDeliveryType"
|
||||||
- name: "GuidBranch"
|
- $ref: "#/components/parameters/GuidBranch"
|
||||||
description: "Required for providing stock and price information."
|
- $ref: "#/components/parameters/GuidCalculationProfile"
|
||||||
in: "query"
|
- $ref: "#/components/parameters/GuidShopArticleConfig"
|
||||||
required: true
|
- $ref: "#/components/parameters/SearchTerm2"
|
||||||
schema:
|
- $ref: "#/components/parameters/GuidWidth2"
|
||||||
type: "string"
|
- $ref: "#/components/parameters/GuidSection2"
|
||||||
default: null
|
- $ref: "#/components/parameters/GuidDiameter2"
|
||||||
example: "ebb89e89-8d25-809e-7814-c53b686ae164"
|
- $ref: "#/components/parameters/GuidSpeedIndex2"
|
||||||
- name: "GuidCalculationProfile"
|
- $ref: "#/components/parameters/GuidLoadIndex2"
|
||||||
description: "If provided, the prices will base on this profile."
|
- $ref: "#/components/parameters/GuidHoleCount2"
|
||||||
in: "query"
|
- $ref: "#/components/parameters/GuidHoleCircle2"
|
||||||
required: false
|
- $ref: "#/components/parameters/GuidOffset2"
|
||||||
schema:
|
- $ref: "#/components/parameters/GuidHubBoreHole2"
|
||||||
type: "string"
|
|
||||||
default: null
|
|
||||||
example: "ebb89e89-8d25-809e-7814-c53b686ae164"
|
|
||||||
- name: "SearchTerm2"
|
|
||||||
in: "query"
|
|
||||||
required: false
|
|
||||||
schema:
|
|
||||||
type: "string"
|
|
||||||
- name: "GuidWidth2"
|
|
||||||
in: "query"
|
|
||||||
required: false
|
|
||||||
schema:
|
|
||||||
type: "string"
|
|
||||||
- name: "GuidSection2"
|
|
||||||
in: "query"
|
|
||||||
required: false
|
|
||||||
schema:
|
|
||||||
type: "string"
|
|
||||||
- name: "GuidDiameter2"
|
|
||||||
in: "query"
|
|
||||||
required: false
|
|
||||||
schema:
|
|
||||||
type: "string"
|
|
||||||
- name: "GuidSpeedIndex2"
|
|
||||||
in: "query"
|
|
||||||
required: false
|
|
||||||
schema:
|
|
||||||
type: "string"
|
|
||||||
- name: "GuidLoadIndex2"
|
|
||||||
in: "query"
|
|
||||||
required: false
|
|
||||||
schema:
|
|
||||||
type: "string"
|
|
||||||
- name: "GuidHoleCount2"
|
|
||||||
in: "query"
|
|
||||||
required: false
|
|
||||||
schema:
|
|
||||||
type: "string"
|
|
||||||
- name: "GuidHoleCircle2"
|
|
||||||
in: "query"
|
|
||||||
required: false
|
|
||||||
schema:
|
|
||||||
type: "string"
|
|
||||||
- name: "GuidOffset2"
|
|
||||||
in: "query"
|
|
||||||
required: false
|
|
||||||
schema:
|
|
||||||
type: "string"
|
|
||||||
- name: "GuidHubBoreHole2"
|
|
||||||
in: "query"
|
|
||||||
required: false
|
|
||||||
schema:
|
|
||||||
type: "string"
|
|
||||||
responses:
|
responses:
|
||||||
200:
|
200:
|
||||||
description: "successful operation"
|
description: "successful operation"
|
||||||
@@ -760,16 +707,86 @@ paths:
|
|||||||
$ref: "#/components/responses/GenericError"
|
$ref: "#/components/responses/GenericError"
|
||||||
security:
|
security:
|
||||||
- SessionScheme: []
|
- SessionScheme: []
|
||||||
/ShopArticleStockDetails:
|
# ArticleDetails
|
||||||
|
/ShopArticleAccessories:
|
||||||
get:
|
get:
|
||||||
tags:
|
tags:
|
||||||
- "Search"
|
- "ArticleDetails"
|
||||||
parameters:
|
parameters:
|
||||||
- $ref: "#/components/parameters/GuidOnlineService"
|
- $ref: "#/components/parameters/GuidOnlineService"
|
||||||
- $ref: "#/components/parameters/GuidDeliveryType"
|
- $ref: "#/components/parameters/GuidDeliveryType"
|
||||||
- name: "GuidShopArticle"
|
- $ref: "#/components/parameters/GuidShopArticle"
|
||||||
|
- $ref: "#/components/parameters/GuidBranch"
|
||||||
|
- $ref: "#/components/parameters/GuidCalculationProfile"
|
||||||
|
- $ref: "#/components/parameters/GuidShopArticleConfig"
|
||||||
|
responses:
|
||||||
|
200:
|
||||||
|
description: "successful operation"
|
||||||
|
content:
|
||||||
|
application/json:
|
||||||
|
schema:
|
||||||
|
type: "array"
|
||||||
|
items:
|
||||||
|
$ref: "#/components/schemas/ShopArticle"
|
||||||
|
default:
|
||||||
|
$ref: "#/components/responses/GenericError"
|
||||||
|
security:
|
||||||
|
- SessionScheme: []
|
||||||
|
/ShopArticleInformations:
|
||||||
|
get:
|
||||||
|
tags:
|
||||||
|
- "ArticleDetails"
|
||||||
|
parameters:
|
||||||
|
- $ref: "#/components/parameters/BinaryObjectContentType"
|
||||||
|
- $ref: "#/components/parameters/GuidOnlineService"
|
||||||
|
- $ref: "#/components/parameters/GuidShopArticle"
|
||||||
|
responses:
|
||||||
|
200:
|
||||||
|
description: "successful operation"
|
||||||
|
content:
|
||||||
|
application/json:
|
||||||
|
schema:
|
||||||
|
type: "array"
|
||||||
|
items:
|
||||||
|
$ref: "#/components/schemas/ShopArticleInformation"
|
||||||
|
default:
|
||||||
|
$ref: "#/components/responses/GenericError"
|
||||||
|
security:
|
||||||
|
- SessionScheme: []
|
||||||
|
/ShopArticleStockDetails:
|
||||||
|
get:
|
||||||
|
tags:
|
||||||
|
- "ArticleDetails"
|
||||||
|
parameters:
|
||||||
|
- $ref: "#/components/parameters/GuidOnlineService"
|
||||||
|
- $ref: "#/components/parameters/GuidDeliveryType"
|
||||||
|
- $ref: "#/components/parameters/GuidShopArticle"
|
||||||
|
- $ref: "#/components/parameters/GuidShopArticleConfig"
|
||||||
|
responses:
|
||||||
|
200:
|
||||||
|
description: "successful operation"
|
||||||
|
content:
|
||||||
|
application/json:
|
||||||
|
schema:
|
||||||
|
type: "array"
|
||||||
|
items:
|
||||||
|
$ref: "#/components/schemas/ShopArticleStockDetail"
|
||||||
|
default:
|
||||||
|
$ref: "#/components/responses/GenericError"
|
||||||
|
security:
|
||||||
|
- SessionScheme: []
|
||||||
|
# MotorcycleDetails
|
||||||
|
/ShopArticleMotorcycleInformations:
|
||||||
|
get:
|
||||||
|
tags:
|
||||||
|
- "MotorcycleDetails"
|
||||||
|
parameters:
|
||||||
|
- $ref: "#/components/parameters/BinaryObjectContentType"
|
||||||
|
- $ref: "#/components/parameters/GuidShopArticle"
|
||||||
|
- $ref: "#/components/parameters/GuidMotorcycleModel"
|
||||||
|
- name: "GuidShopArticle2"
|
||||||
in: "query"
|
in: "query"
|
||||||
required: true
|
required: false
|
||||||
schema:
|
schema:
|
||||||
type: "string"
|
type: "string"
|
||||||
default: null
|
default: null
|
||||||
@@ -782,7 +799,26 @@ paths:
|
|||||||
schema:
|
schema:
|
||||||
type: "array"
|
type: "array"
|
||||||
items:
|
items:
|
||||||
$ref: "#/components/schemas/ShopArticleStockDetail"
|
$ref: "#/components/schemas/ShopArticleMotorcycleInformation"
|
||||||
|
default:
|
||||||
|
$ref: "#/components/responses/GenericError"
|
||||||
|
security:
|
||||||
|
- SessionScheme: []
|
||||||
|
/ShopArticleMotorcycles:
|
||||||
|
get:
|
||||||
|
tags:
|
||||||
|
- "MotorcycleDetails"
|
||||||
|
parameters:
|
||||||
|
- $ref: "#/components/parameters/GuidShopArticle"
|
||||||
|
responses:
|
||||||
|
200:
|
||||||
|
description: "successful operation"
|
||||||
|
content:
|
||||||
|
application/json:
|
||||||
|
schema:
|
||||||
|
type: "array"
|
||||||
|
items:
|
||||||
|
$ref: "#/components/schemas/ShopArticleMotorcycle"
|
||||||
default:
|
default:
|
||||||
$ref: "#/components/responses/GenericError"
|
$ref: "#/components/responses/GenericError"
|
||||||
security:
|
security:
|
||||||
@@ -1053,22 +1089,8 @@ paths:
|
|||||||
- "Cart"
|
- "Cart"
|
||||||
parameters:
|
parameters:
|
||||||
- $ref: "#/components/parameters/GuidOnlineService"
|
- $ref: "#/components/parameters/GuidOnlineService"
|
||||||
- name: "GuidBranch"
|
- $ref: "#/components/parameters/GuidBranch"
|
||||||
description: "Required for providing stock and price information."
|
- $ref: "#/components/parameters/GuidCalculationProfile"
|
||||||
in: "query"
|
|
||||||
required: true
|
|
||||||
schema:
|
|
||||||
type: "string"
|
|
||||||
default: null
|
|
||||||
example: "ebb89e89-8d25-809e-7814-c53b686ae164"
|
|
||||||
- name: "GuidCalculationProfile"
|
|
||||||
description: "If provided, the prices will base on this profile."
|
|
||||||
in: "query"
|
|
||||||
required: false
|
|
||||||
schema:
|
|
||||||
type: "string"
|
|
||||||
default: null
|
|
||||||
example: "ebb89e89-8d25-809e-7814-c53b686ae164"
|
|
||||||
responses:
|
responses:
|
||||||
200:
|
200:
|
||||||
description: "successful operation"
|
description: "successful operation"
|
||||||
@@ -1187,29 +1209,9 @@ paths:
|
|||||||
tags:
|
tags:
|
||||||
- "Cart"
|
- "Cart"
|
||||||
parameters:
|
parameters:
|
||||||
- name: "GuidCart"
|
- $ref: "#/components/parameters/GuidBranch"
|
||||||
in: "query"
|
- $ref: "#/components/parameters/GuidCalculationProfile"
|
||||||
required: true
|
- $ref: "#/components/parameters/GuidCart"
|
||||||
schema:
|
|
||||||
type: "string"
|
|
||||||
default: null
|
|
||||||
example: "ebb89e89-8d25-809e-7814-c53b686ae164"
|
|
||||||
- name: "GuidBranch"
|
|
||||||
description: "Required for providing stock and price information."
|
|
||||||
in: "query"
|
|
||||||
required: true
|
|
||||||
schema:
|
|
||||||
type: "string"
|
|
||||||
default: null
|
|
||||||
example: "ebb89e89-8d25-809e-7814-c53b686ae164"
|
|
||||||
- name: "GuidCalculationProfile"
|
|
||||||
description: "If provided, the prices will base on this profile."
|
|
||||||
in: "query"
|
|
||||||
required: false
|
|
||||||
schema:
|
|
||||||
type: "string"
|
|
||||||
default: null
|
|
||||||
example: "ebb89e89-8d25-809e-7814-c53b686ae164"
|
|
||||||
responses:
|
responses:
|
||||||
200:
|
200:
|
||||||
description: "successful operation"
|
description: "successful operation"
|
||||||
@@ -1227,13 +1229,7 @@ paths:
|
|||||||
tags:
|
tags:
|
||||||
- "Cart"
|
- "Cart"
|
||||||
parameters:
|
parameters:
|
||||||
- name: "GuidCart"
|
- $ref: "#/components/parameters/GuidCart"
|
||||||
in: "query"
|
|
||||||
required: true
|
|
||||||
schema:
|
|
||||||
type: "string"
|
|
||||||
default: null
|
|
||||||
example: "ebb89e89-8d25-809e-7814-c53b686ae164"
|
|
||||||
requestBody:
|
requestBody:
|
||||||
required: true
|
required: true
|
||||||
content:
|
content:
|
||||||
@@ -1392,6 +1388,7 @@ components:
|
|||||||
- "Designation"
|
- "Designation"
|
||||||
- "Number"
|
- "Number"
|
||||||
- "IsActive"
|
- "IsActive"
|
||||||
|
- "DefaultDeliveryDate"
|
||||||
properties:
|
properties:
|
||||||
Guid:
|
Guid:
|
||||||
type: "string"
|
type: "string"
|
||||||
@@ -1413,6 +1410,9 @@ components:
|
|||||||
type: "number"
|
type: "number"
|
||||||
Longitude:
|
Longitude:
|
||||||
type: "number"
|
type: "number"
|
||||||
|
DefaultDeliveryDate:
|
||||||
|
type: "string"
|
||||||
|
format: "date"
|
||||||
example:
|
example:
|
||||||
Guid: "ebb89e89-8d25-809e-7814-c53b686ae164"
|
Guid: "ebb89e89-8d25-809e-7814-c53b686ae164"
|
||||||
Designation: "Zentrale"
|
Designation: "Zentrale"
|
||||||
@@ -1465,9 +1465,16 @@ components:
|
|||||||
type: "object"
|
type: "object"
|
||||||
required:
|
required:
|
||||||
- "Guid"
|
- "Guid"
|
||||||
|
- "DesiredAmountOfDirectSearch"
|
||||||
|
- "DesiredAmountOfCombinationSearch"
|
||||||
|
- "Columns"
|
||||||
properties:
|
properties:
|
||||||
Guid:
|
Guid:
|
||||||
type: "string"
|
type: "string"
|
||||||
|
DesiredAmountOfDirectSearch:
|
||||||
|
type: "number"
|
||||||
|
DesiredAmountOfCombinationSearch:
|
||||||
|
type: "number"
|
||||||
Columns:
|
Columns:
|
||||||
type: "array"
|
type: "array"
|
||||||
items:
|
items:
|
||||||
@@ -1531,6 +1538,16 @@ components:
|
|||||||
type: "string"
|
type: "string"
|
||||||
GuidVehicleType:
|
GuidVehicleType:
|
||||||
type: "string"
|
type: "string"
|
||||||
|
TypeGroups:
|
||||||
|
type: "array"
|
||||||
|
items:
|
||||||
|
type: "object"
|
||||||
|
required:
|
||||||
|
- "Designation"
|
||||||
|
- "Types"
|
||||||
|
properties:
|
||||||
|
Designation:
|
||||||
|
type: "string"
|
||||||
Types:
|
Types:
|
||||||
type: "array"
|
type: "array"
|
||||||
items:
|
items:
|
||||||
@@ -1556,6 +1573,9 @@ components:
|
|||||||
- "Offset"
|
- "Offset"
|
||||||
- "HubBoreHole"
|
- "HubBoreHole"
|
||||||
- "Manufacturer"
|
- "Manufacturer"
|
||||||
|
- "MotorcycleManufacturer"
|
||||||
|
- "MotorcycleDisplacement"
|
||||||
|
- "MotorcycleModel"
|
||||||
Filter:
|
Filter:
|
||||||
type: "object"
|
type: "object"
|
||||||
required:
|
required:
|
||||||
@@ -1583,6 +1603,15 @@ components:
|
|||||||
- "Offset"
|
- "Offset"
|
||||||
- "HubBoreHole"
|
- "HubBoreHole"
|
||||||
- "Manufacturer"
|
- "Manufacturer"
|
||||||
|
- "Width2"
|
||||||
|
- "Section2"
|
||||||
|
- "Diameter2"
|
||||||
|
- "SpeedIndex2"
|
||||||
|
- "LoadIndex2"
|
||||||
|
- "HoleCount2"
|
||||||
|
- "HoleCircle2"
|
||||||
|
- "Offset2"
|
||||||
|
- "HubBoreHole2"
|
||||||
Options:
|
Options:
|
||||||
type: "array"
|
type: "array"
|
||||||
items:
|
items:
|
||||||
@@ -1601,6 +1630,68 @@ components:
|
|||||||
type: "string"
|
type: "string"
|
||||||
ParameterValue:
|
ParameterValue:
|
||||||
type: "string"
|
type: "string"
|
||||||
|
Filter2:
|
||||||
|
type: "object"
|
||||||
|
required:
|
||||||
|
- "Type"
|
||||||
|
- "Designation"
|
||||||
|
- "Fields"
|
||||||
|
properties:
|
||||||
|
Type:
|
||||||
|
type: "string"
|
||||||
|
enum:
|
||||||
|
- "Basic"
|
||||||
|
- "Detail"
|
||||||
|
- "Motorcycle"
|
||||||
|
Designation:
|
||||||
|
type: "string"
|
||||||
|
Fields:
|
||||||
|
type: "array"
|
||||||
|
items:
|
||||||
|
type: "object"
|
||||||
|
required:
|
||||||
|
- "Type"
|
||||||
|
- "Designation"
|
||||||
|
- "ParameterKey"
|
||||||
|
- "Options"
|
||||||
|
properties:
|
||||||
|
Type:
|
||||||
|
type: "string"
|
||||||
|
enum:
|
||||||
|
- "MaterialType"
|
||||||
|
- "VehicleType"
|
||||||
|
- "Width"
|
||||||
|
- "Section"
|
||||||
|
- "Diameter"
|
||||||
|
- "SpeedIndex"
|
||||||
|
- "LoadIndex"
|
||||||
|
- "HoleCount"
|
||||||
|
- "HoleCircle"
|
||||||
|
- "Offset"
|
||||||
|
- "HubBoreHole"
|
||||||
|
- "Manufacturer"
|
||||||
|
- "MotorcycleManufacturer"
|
||||||
|
- "MotorcycleDisplacement"
|
||||||
|
- "MotorcycleModel"
|
||||||
|
Designation:
|
||||||
|
type: "string"
|
||||||
|
ParameterKey:
|
||||||
|
type: "string"
|
||||||
|
Options:
|
||||||
|
type: "array"
|
||||||
|
items:
|
||||||
|
type: "object"
|
||||||
|
required:
|
||||||
|
- "Designation"
|
||||||
|
- "NumberOfResults"
|
||||||
|
- "ParameterValue"
|
||||||
|
properties:
|
||||||
|
Designation:
|
||||||
|
type: "string"
|
||||||
|
NumberOfResults:
|
||||||
|
type: "integer"
|
||||||
|
ParameterValue:
|
||||||
|
type: "string"
|
||||||
ShopArticle:
|
ShopArticle:
|
||||||
type: "object"
|
type: "object"
|
||||||
required:
|
required:
|
||||||
@@ -1727,6 +1818,43 @@ components:
|
|||||||
DeliveryDate:
|
DeliveryDate:
|
||||||
type: "string"
|
type: "string"
|
||||||
format: "date"
|
format: "date"
|
||||||
|
ShopArticleMotorcycleInformation:
|
||||||
|
type: "object"
|
||||||
|
required:
|
||||||
|
- "Notes"
|
||||||
|
properties:
|
||||||
|
CertificateFile:
|
||||||
|
$ref: "#/components/schemas/DbBlob"
|
||||||
|
Notes:
|
||||||
|
type: "array"
|
||||||
|
items:
|
||||||
|
type: "string"
|
||||||
|
ShopArticleMotorcycle:
|
||||||
|
type: "object"
|
||||||
|
required:
|
||||||
|
- "GuidMotorcycle"
|
||||||
|
- "Manufacturer"
|
||||||
|
- "Model"
|
||||||
|
- "Type"
|
||||||
|
properties:
|
||||||
|
GuidMotorcycleModel:
|
||||||
|
type: "string"
|
||||||
|
Manufacturer:
|
||||||
|
type: "string"
|
||||||
|
Model:
|
||||||
|
type: "string"
|
||||||
|
Type:
|
||||||
|
type: "string"
|
||||||
|
DisplacementInCcm:
|
||||||
|
type: "integer"
|
||||||
|
PowerInKw:
|
||||||
|
type: "integer"
|
||||||
|
ConstructionYearFrom:
|
||||||
|
type: "integer"
|
||||||
|
ConstructionYearTo:
|
||||||
|
type: "integer"
|
||||||
|
AdditionalDesignation:
|
||||||
|
type: "string"
|
||||||
MaterialType:
|
MaterialType:
|
||||||
type: "object"
|
type: "object"
|
||||||
required:
|
required:
|
||||||
@@ -1869,6 +1997,7 @@ components:
|
|||||||
- "Guid"
|
- "Guid"
|
||||||
- "GuidCurrency"
|
- "GuidCurrency"
|
||||||
- "DefaultAmount"
|
- "DefaultAmount"
|
||||||
|
- "DefaultDeliveryDate"
|
||||||
- "OneClickPurchase"
|
- "OneClickPurchase"
|
||||||
- "FullTaxPercentage"
|
- "FullTaxPercentage"
|
||||||
- "ReducedTaxPercentage"
|
- "ReducedTaxPercentage"
|
||||||
@@ -1894,6 +2023,10 @@ components:
|
|||||||
DefaultAmount:
|
DefaultAmount:
|
||||||
type: "number"
|
type: "number"
|
||||||
readOnly: true
|
readOnly: true
|
||||||
|
DefaultDeliveryDate:
|
||||||
|
type: "string"
|
||||||
|
format: "date"
|
||||||
|
readOnly: true
|
||||||
OneClickPurchase:
|
OneClickPurchase:
|
||||||
type: "boolean"
|
type: "boolean"
|
||||||
readOnly: true
|
readOnly: true
|
||||||
@@ -2283,14 +2416,160 @@ components:
|
|||||||
type: "string"
|
type: "string"
|
||||||
default: null
|
default: null
|
||||||
example: "ebb89e89-8d25-809e-7814-c53b686ae164"
|
example: "ebb89e89-8d25-809e-7814-c53b686ae164"
|
||||||
SearchTerm:
|
GuidMotorcycleManufacturer:
|
||||||
name: "SearchTerm"
|
name: "GuidMotorcycleManufacturer"
|
||||||
|
in: "query"
|
||||||
|
required: false
|
||||||
|
schema:
|
||||||
|
type: "string"
|
||||||
|
default: null
|
||||||
|
example: "ebb89e89-8d25-809e-7814-c53b686ae164"
|
||||||
|
GuidMotorcycleDisplacement:
|
||||||
|
name: "GuidMotorcycleDisplacement"
|
||||||
|
in: "query"
|
||||||
|
required: false
|
||||||
|
schema:
|
||||||
|
type: "string"
|
||||||
|
default: null
|
||||||
|
example: "ebb89e89-8d25-809e-7814-c53b686ae164"
|
||||||
|
GuidMotorcycleModel:
|
||||||
|
name: "GuidMotorcycleModel"
|
||||||
|
in: "query"
|
||||||
|
required: false
|
||||||
|
schema:
|
||||||
|
type: "string"
|
||||||
|
default: null
|
||||||
|
example: "ebb89e89-8d25-809e-7814-c53b686ae164"
|
||||||
|
GuidBranch:
|
||||||
|
name: "GuidBranch"
|
||||||
|
description: "Required for providing stock and price information."
|
||||||
|
in: "query"
|
||||||
|
required: true
|
||||||
|
schema:
|
||||||
|
type: "string"
|
||||||
|
default: null
|
||||||
|
example: "ebb89e89-8d25-809e-7814-c53b686ae164"
|
||||||
|
GuidCalculationProfile:
|
||||||
|
name: "GuidCalculationProfile"
|
||||||
|
description: "If provided, the prices will base on this profile."
|
||||||
|
in: "query"
|
||||||
|
required: false
|
||||||
|
schema:
|
||||||
|
type: "string"
|
||||||
|
default: null
|
||||||
|
example: "ebb89e89-8d25-809e-7814-c53b686ae164"
|
||||||
|
GuidCart:
|
||||||
|
name: "GuidCart"
|
||||||
|
in: "query"
|
||||||
|
required: true
|
||||||
|
schema:
|
||||||
|
type: "string"
|
||||||
|
default: null
|
||||||
|
example: "ebb89e89-8d25-809e-7814-c53b686ae164"
|
||||||
|
GuidShopArticle:
|
||||||
|
name: "GuidShopArticle"
|
||||||
|
in: "query"
|
||||||
|
required: true
|
||||||
|
schema:
|
||||||
|
type: "string"
|
||||||
|
default: null
|
||||||
|
example: "ebb89e89-8d25-809e-7814-c53b686ae164"
|
||||||
|
GuidShopArticleConfig:
|
||||||
|
name: "GuidShopArticleConfig"
|
||||||
|
in: "query"
|
||||||
|
required: false
|
||||||
|
schema:
|
||||||
|
type: "string"
|
||||||
|
default: null
|
||||||
|
example: "ebb89e89-8d25-809e-7814-c53b686ae164"
|
||||||
|
SearchTerm1:
|
||||||
|
name: "SearchTerm1"
|
||||||
in: "query"
|
in: "query"
|
||||||
required: false
|
required: false
|
||||||
schema:
|
schema:
|
||||||
type: "string"
|
type: "string"
|
||||||
default: null
|
default: null
|
||||||
example: "2055516"
|
example: "2055516"
|
||||||
|
SearchTerm2:
|
||||||
|
name: "SearchTerm2"
|
||||||
|
in: "query"
|
||||||
|
required: false
|
||||||
|
schema:
|
||||||
|
type: "string"
|
||||||
|
default: null
|
||||||
|
example: "2055516"
|
||||||
|
GuidWidth2:
|
||||||
|
name: "GuidWidth2"
|
||||||
|
in: "query"
|
||||||
|
required: false
|
||||||
|
schema:
|
||||||
|
type: "string"
|
||||||
|
default: null
|
||||||
|
example: "ebb89e89-8d25-809e-7814-c53b686ae164"
|
||||||
|
GuidSection2:
|
||||||
|
name: "GuidSection2"
|
||||||
|
in: "query"
|
||||||
|
required: false
|
||||||
|
schema:
|
||||||
|
type: "string"
|
||||||
|
default: null
|
||||||
|
example: "ebb89e89-8d25-809e-7814-c53b686ae164"
|
||||||
|
GuidDiameter2:
|
||||||
|
name: "GuidDiameter2"
|
||||||
|
in: "query"
|
||||||
|
required: false
|
||||||
|
schema:
|
||||||
|
type: "string"
|
||||||
|
default: null
|
||||||
|
example: "ebb89e89-8d25-809e-7814-c53b686ae164"
|
||||||
|
GuidSpeedIndex2:
|
||||||
|
name: "GuidSpeedIndex2"
|
||||||
|
in: "query"
|
||||||
|
required: false
|
||||||
|
schema:
|
||||||
|
type: "string"
|
||||||
|
default: null
|
||||||
|
example: "ebb89e89-8d25-809e-7814-c53b686ae164"
|
||||||
|
GuidLoadIndex2:
|
||||||
|
name: "GuidLoadIndex2"
|
||||||
|
in: "query"
|
||||||
|
required: false
|
||||||
|
schema:
|
||||||
|
type: "string"
|
||||||
|
default: null
|
||||||
|
example: "ebb89e89-8d25-809e-7814-c53b686ae164"
|
||||||
|
GuidHoleCount2:
|
||||||
|
name: "GuidHoleCount2"
|
||||||
|
in: "query"
|
||||||
|
required: false
|
||||||
|
schema:
|
||||||
|
type: "string"
|
||||||
|
default: null
|
||||||
|
example: "ebb89e89-8d25-809e-7814-c53b686ae164"
|
||||||
|
GuidHoleCircle2:
|
||||||
|
name: "GuidHoleCircle2"
|
||||||
|
in: "query"
|
||||||
|
required: false
|
||||||
|
schema:
|
||||||
|
type: "string"
|
||||||
|
default: null
|
||||||
|
example: "ebb89e89-8d25-809e-7814-c53b686ae164"
|
||||||
|
GuidOffset2:
|
||||||
|
name: "GuidOffset2"
|
||||||
|
in: "query"
|
||||||
|
required: false
|
||||||
|
schema:
|
||||||
|
type: "string"
|
||||||
|
default: null
|
||||||
|
example: "ebb89e89-8d25-809e-7814-c53b686ae164"
|
||||||
|
GuidHubBoreHole2:
|
||||||
|
name: "GuidHubBoreHole2"
|
||||||
|
in: "query"
|
||||||
|
required: false
|
||||||
|
schema:
|
||||||
|
type: "string"
|
||||||
|
default: null
|
||||||
|
example: "ebb89e89-8d25-809e-7814-c53b686ae164"
|
||||||
BinaryObjectContentType:
|
BinaryObjectContentType:
|
||||||
name: "BinaryObjectContentType"
|
name: "BinaryObjectContentType"
|
||||||
in: "query"
|
in: "query"
|
||||||
@@ -2311,28 +2590,3 @@ components:
|
|||||||
application/json:
|
application/json:
|
||||||
schema:
|
schema:
|
||||||
$ref: "#/components/schemas/GenericError"
|
$ref: "#/components/schemas/GenericError"
|
||||||
|
|
||||||
# MISSING
|
|
||||||
# GET /Vehicles
|
|
||||||
# GET /Tubes
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -167,6 +167,23 @@ paths:
|
|||||||
$ref: "#/components/responses/GenericError"
|
$ref: "#/components/responses/GenericError"
|
||||||
security:
|
security:
|
||||||
- SessionScheme: []
|
- SessionScheme: []
|
||||||
|
/CustomerStorages/{Guid}/custommethods/Predecessor:
|
||||||
|
get:
|
||||||
|
tags:
|
||||||
|
- "TPMS / customer storage"
|
||||||
|
parameters:
|
||||||
|
- $ref: "#/components/parameters/GuidPathParameter"
|
||||||
|
responses:
|
||||||
|
200:
|
||||||
|
description: "successful operation"
|
||||||
|
content:
|
||||||
|
application/json:
|
||||||
|
schema:
|
||||||
|
$ref: "#/components/schemas/CustomerStorage"
|
||||||
|
default:
|
||||||
|
$ref: "#/components/responses/GenericError"
|
||||||
|
security:
|
||||||
|
- SessionScheme: []
|
||||||
/CustomerStorages/{Guid}/custommethods/Rearrange:
|
/CustomerStorages/{Guid}/custommethods/Rearrange:
|
||||||
post:
|
post:
|
||||||
tags:
|
tags:
|
||||||
@@ -184,6 +201,23 @@ paths:
|
|||||||
$ref: "#/components/responses/GenericError"
|
$ref: "#/components/responses/GenericError"
|
||||||
security:
|
security:
|
||||||
- SessionScheme: []
|
- SessionScheme: []
|
||||||
|
/CustomerStorages/{Guid}/custommethods/Successor:
|
||||||
|
get:
|
||||||
|
tags:
|
||||||
|
- "TPMS / customer storage"
|
||||||
|
parameters:
|
||||||
|
- $ref: "#/components/parameters/GuidPathParameter"
|
||||||
|
responses:
|
||||||
|
200:
|
||||||
|
description: "successful operation"
|
||||||
|
content:
|
||||||
|
application/json:
|
||||||
|
schema:
|
||||||
|
$ref: "#/components/schemas/CustomerStorage"
|
||||||
|
default:
|
||||||
|
$ref: "#/components/responses/GenericError"
|
||||||
|
security:
|
||||||
|
- SessionScheme: []
|
||||||
/CustomerStoragePositions/{Guid}:
|
/CustomerStoragePositions/{Guid}:
|
||||||
get:
|
get:
|
||||||
tags:
|
tags:
|
||||||
|
|||||||
Reference in New Issue
Block a user