Skip to content

Latest commit

 

History

History
128 lines (83 loc) · 1.36 KB

product_resources.md

File metadata and controls

128 lines (83 loc) · 1.36 KB

资源定义

查看资源列表

API 定义

GET /api/v1/product_resources?productID={productID}&_page={page}&_limit={pageSize}

请求示例

GET /api/v1/product_resources?productID=2ioNzM&_page=1&_limit=10

成功响应

status 200
{
  "items": [
    {
      "codeValue": "serialNumber",
      "codeValueLabel": "序列号",
      "createAt": "2018-10-17 13:43:03",
      "dataPointIntID": 42,
      "dataPointName": "测试字符",
      "id": 6,
      "itemName": null,
      "productItemIntID": null,
      "updateAt": null
    }
  ],
  "meta": {
    "count": 1,
    "limit": 10,
    "page": 1
  }
}

创建资源

API 定义

POST /api/v1/product_resources

请求示例

POST /api/v1/product_resources
{
  "codeValue": "serialNumber",
  "dataPointIntID": 42,
  "productIntID": "60",
  "productItemIntID": 0
}

成功响应

status 201
{
  "codeValue": "serialNumber",
  "createAt": "2018-10-17 13:43:03",
  "dataPointIntID": 42,
  "id": 6,
  "productItemIntID": null,
  "updateAt": null
}

删除资源

API 定义

DELETE /api/v1/product_resources?ids={resourcesIDS}

请求示例

DELETE /api/v1/product_resources?ids=3

成功响应

status 204
""