123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- @webapp_HostAddress = http://localhost:5101
- GET {{webapp_HostAddress}}/weatherforecast/
- Accept: application/json
- ###
- GET {{webapp_HostAddress}}/product
- Accept: application/json
- ###
- POST {{webapp_HostAddress}}/product
- Content-Type: application/json
- {
- "ID": 0,
- "Title": "Test",
- "ProductTypeID": 2,
- "ArticleNumber": "123"
- }
- ###
- DELETE {{webapp_HostAddress}}/product/103
- ###
- GET {{webapp_HostAddress}}/productCount
- Accept: application/json
- ###
- PUT {{webapp_HostAddress}}/minCostForAgent/1000
- Content-Type: application/json
- [102, 101, 100]
- ###
- GET {{webapp_HostAddress}}/articleCheck/266521/3
- Accept: application/json
- ###
- GET {{webapp_HostAddress}}/saleCount/12
- Accept: application/json
- ###
- DELETE {{webapp_HostAddress}}/productMaterial/4
- Accept: application/json
- ###
- DELETE {{webapp_HostAddress}}/productCostHistory/1
- Accept: application/json
- ###
- GET {{webapp_HostAddress}}/productMaterial/4
- Accept: application/json
- ###
- GET {{webapp_HostAddress}}/material
- Accept: application/json
- ###
- POST {{webapp_HostAddress}}/productMaterial
- Content-Type: application/json
- {
- "ProductId": 5,
- "MaterialId": 5,
- "Count": 5
- }
|