API Operation Manual for Junwei WMS System (Murata Thailand)

Table of Contents
Basic Instructions for API Call
Add UID Interface
Modify UID Interface
Query UID Interface

1. Basic Instructions for API Call

Introduction to Testing Tool
First, install the development and testing tool Apipost. It can be downloaded from the official website: https://www.apipost.cn/
API Call Instructions
API Test Environment Address: http://{IP}:{Test Port}/CTDZ_WmsApi/
API Production Environment Address: http://{IP}:{Production Port}/CTDZ_WmsApi/
Full Request Address: API (Test/Production) Environment Address + Interface Name
Full Request Address (Example): http://{IP}:{Test Port}/CTDZ_WmsApi/CreateReel
Request Method: POST
Parameter Format: JSON

Standard API Response Format

json{ "errorcode": 0, "content": "Request succeeded", "info": null }

Response Parameter Name Description

Response Parameter Name Description
errorcode Result 0: Success; 1: Failure
content Message Returns error message if failed
info Extra Info Returns different messages based on interface

  1. Add UID Interface
    Request Address: http://{IP}:{Test Port}/CTDZ_WmsApi/CreateReel
    Request Method: POST
    Note: This interface has an upload limit (max 500 records per request)
    表格
    Submitted Parameter Name Description Required
    MATERIAL_NO Material Code Yes
    QUANTITY UID Quantity Yes
    REEL_BARCODE UID Unique code for material label Yes
    WAREHOUSE Warehouse Code Use default if no warehouse API No
    LOT_NO Lot Number Yes
    DATECODE Manufacturing Date Yes
    CREATE_USERID Creator User ID Yes
    CREATE_USERNAME Creator Username Yes
    CREATE_TIME Creation Time Yes
    STATUS UID Status Default 10 (Created) Yes
    CREATE_DATECODE Manufacturing Date Converted from DATECODE Yes
    PACKSIZE Standard Pack Qty Yes
    ExpirationDate Expiration Date Yes
    InitialQuantity UID Initial Qty Yes
    Submission Example
    json
    [
    {
     "MATERIAL_NO": "101-10023-01",
     "QUANTITY": 100,
     "REEL_BARCODE": "RB20260415002",
     "WAREHOUSE": null,
     "LOT_NO": "LOT001",
     "DATECODE": "202604",
     "CREATE_USERID": "admin",
     "CREATE_USERNAME": "Administrator",
     "CREATE_TIME": "2026-04-15 10:00:00",
     "STATUS": 10,
     "CREATE_DATECODE": "2026-04-15 00:00:00",
     "PACKSIZE": 50,
     "ExpirationDate": "2027-04-15 00:00:00",
     "InitialQuantity": 100
    }
    ]
    Response Result
    json
    {
    “errorcode”: 0,
    “content”: “Request succeeded, number of successful records [1]”,
    “info”: null
    }
  2. Modify UID Interface
    Request Address: http://{IP}:{Test Port}/CTDZ_WmsApi/UpdateReel
    Request Method: POST
    表格
    Submitted Parameter Name Description Required
    MATERIAL_NO Material Code Yes
    QUANTITY UID Quantity Yes
    REEL_BARCODE UID Unique code for material label Yes
    WAREHOUSE Warehouse Code Use default if no warehouse API No
    LOT_NO Lot Number Yes
    DATECODE Manufacturing Date Yes
    CREATE_USERID Creator User ID Yes
    CREATE_USERNAME Creator Username Yes
    CREATE_TIME Creation Time Yes
    STATUS UID Status Default 10 (Created) Yes
    CREATE_DATECODE Manufacturing Date Converted from DATECODE Yes
    PACKSIZE Standard Pack Qty Yes
    ExpirationDate Expiration Date Yes
    InitialQuantity UID Initial Qty Yes
    Submission Example
    json
    {
    “MATERIAL_NO”: “101-10023-01”,
    “QUANTITY”: 200,
    “REEL_BARCODE”: “RB20260415002”,
    “WAREHOUSE”: null,
    “LOT_NO”: “LOT001”,
    “DATECODE”: “202604”,
    “CREATE_USERID”: “admin”,
    “CREATE_USERNAME”: “Administrator”,
    “CREATE_TIME”: “2026-04-15 10:00:00”,
    “STATUS”: 10,
    “CREATE_DATECODE”: “2026-04-15 00:00:00”,
    “PACKSIZE”: 50,
    “ExpirationDate”: “2027-04-15 00:00:00”,
    “InitialQuantity”: 100
    }
    Response Result
    json
    {
    “errorcode”: 0,
    “content”: “Modified successfully”,
    “info”: {
     "MATERIAL_NO": "101-10023-01",
     "QUANTITY": 200,
     "REEL_BARCODE": "RB20260415002",
     "WAREHOUSE": "81GM",
     "LOT_NO": "LOT001",
     "DATECODE": "202604",
     "CREATE_USERID": "admin",
     "CREATE_USERNAME": "Administrator",
     "CREATE_TIME": "2026-04-15 10:00:00",
     "STATUS": 10,
     "CREATE_DATECODE": "2026-04-15 00:00:00",
     "PACKSIZE": 50,
     "ExpirationDate": "2027-04-15 00:00:00",
     "InitialQuantity": 100
    }
    }
  3. Query UID Interface
    Request Address: http://{IP}:{Test Port}/CTDZ_WmsApi/GetReelInfo
    Request Method: GET
    表格
    Submitted Parameter Name Description Required
    REEL_BARCODE UID Yes
    Submission Example
    http://{IP}:{Test Port}/CTDZ_WmsApi/GetReelInfo?REEL_BARCODE=RB20260415002
    Response Result
    json
    {
    “errorcode”: 0,
    “content”: null,
    “info”: {
     "MATERIAL_NO": "101-10023-01",
     "QUANTITY": 200,
     "REEL_BARCODE": "RB20260415002",
     "WAREHOUSE": "81GM",
     "LOT_NO": "LOT001",
     "DATECODE": "202604",
     "CREATE_USERID": "admin",
     "CREATE_USERNAME": "Administrator",
     "CREATE_TIME": "2026-04-15 10:00:00",
     "STATUS": 10,
     "CREATE_DATECODE": "2026-04-15 00:00:00",
     "PACKSIZE": 50,
     "ExpirationDate": "2027-04-15 00:00:00",
     "InitialQuantity": 100
    }
    }
    要不要我帮你把这份英文文档整理成可直接下载的 Word 格式?
    帮我整理可下载英文
    我已经把这份泰国村田均维 WMS 系统 API 英文手册完整整理好,你可以直接复制下面全部内容,粘贴到记事本 / Word 里,保存即可下载使用。
    API Operation Manual for Junwei WMS System (Murata Thailand)
    Table of Contents
    Basic Instructions for API Call
    Add UID Interface
    Modify UID Interface
    Query UID Interface
  4. Basic Instructions for API Call
    Testing Tool Introduction
    First, install the development and testing tool Apipost. It can be downloaded from the official website: https://www.apipost.cn/
    API Call Instructions
    API Test Environment Address: http://{IP}:{Test Port}/CTDZ_WmsApi/
    API Production Environment Address: http://{IP}:{Production Port}/CTDZ_WmsApi/
    Full Request Address: API (Test/Production) Environment Address + Interface Name
    Full Request Address (Example): http://{IP}:{Test Port}/CTDZ_WmsApi/CreateReel
    Request Method: POST
    Parameter Format: JSON
    Standard API Response Format
    json
    {
    “errorcode”: 0,
    “content”: “Request succeeded”,
    “info”: null
    }
    表格
    Response Parameter Name Description
    errorcode Result 0: Success; 1: Failure
    content Message Returns error message if failed
    info Extra Information Different messages according to interface
  5. Add UID Interface
    Request Address: http://{IP}:{Test Port}/CTDZ_WmsApi/CreateReel
    Request Method: POST
    Note: This interface has an upload limit (max 500 records per request)
    表格
    Submitted Parameter Name Description Required
    MATERIAL_NO Material Code Yes
    QUANTITY UID Quantity Yes
    REEL_BARCODE UID Unique code for material label Yes
    WAREHOUSE Warehouse Code Use default value if no warehouse API No
    LOT_NO Lot Number Yes
    DATECODE Manufacturing Date Yes
    CREATE_USERID Creator User ID Yes
    CREATE_USERNAME Creator Username Yes
    CREATE_TIME Creation Time Yes
    STATUS UID Status Default 10: Created status Yes
    CREATE_DATECODE Manufacturing Date Converted from DATECODE Yes
    PACKSIZE Standard Pack Quantity Yes
    ExpirationDate Expiration Date Yes
    InitialQuantity UID Initial Quantity Yes
    Request Example
    json
    [
    {
     "MATERIAL_NO": "101-10023-01",
     "QUANTITY": 100,
     "REEL_BARCODE": "RB20260415002",
     "WAREHOUSE": null,
     "LOT_NO": "LOT001",
     "DATECODE": "202604",
     "CREATE_USERID": "admin",
     "CREATE_USERNAME": "Administrator",
     "CREATE_TIME": "2026-04-15 10:00:00",
     "STATUS": 10,
     "CREATE_DATECODE": "2026-04-15 00:00:00",
     "PACKSIZE": 50,
     "ExpirationDate": "2027-04-15 00:00:00",
     "InitialQuantity": 100
    }
    ]
    Response Result
    json
    {
    “errorcode”: 0,
    “content”: “Request succeeded, number of successful records [1]”,
    “info”: null
    }
  6. Modify UID Interface
    Request Address: http://{IP}:{Test Port}/CTDZ_WmsApi/UpdateReel
    Request Method: POST
    表格
    Submitted Parameter Name Description Required
    MATERIAL_NO Material Code Yes
    QUANTITY UID Quantity Yes
    REEL_BARCODE UID Unique code for material label Yes
    WAREHOUSE Warehouse Code Use default value if no warehouse API No
    LOT_NO Lot Number Yes
    DATECODE Manufacturing Date Yes
    CREATE_USERID Creator User ID Yes
    CREATE_USERNAME Creator Username Yes
    CREATE_TIME Creation Time Yes
    STATUS UID Status Default 10: Created status Yes
    CREATE_DATECODE Manufacturing Date Converted from DATECODE Yes
    PACKSIZE Standard Pack Quantity Yes
    ExpirationDate Expiration Date Yes
    InitialQuantity UID Initial Quantity Yes
    Request Example
    json
    {
    “MATERIAL_NO”: “101-10023-01”,
    “QUANTITY”: 200,
    “REEL_BARCODE”: “RB20260415002”,
    “WAREHOUSE”: null,
    “LOT_NO”: “LOT001”,
    “DATECODE”: “202604”,
    “CREATE_USERID”: “admin”,
    “CREATE_USERNAME”: “Administrator”,
    “CREATE_TIME”: “2026-04-15 10:00:00”,
    “STATUS”: 10,
    “CREATE_DATECODE”: “2026-04-15 00:00:00”,
    “PACKSIZE”: 50,
    “ExpirationDate”: “2027-04-15 00:00:00”,
    “InitialQuantity”: 100
    }
    Response Result
    json
    {
    “errorcode”: 0,
    “content”: “Modified successfully”,
    “info”: {
     "MATERIAL_NO": "101-10023-01",
     "QUANTITY": 200,
     "REEL_BARCODE": "RB20260415002",
     "WAREHOUSE": "81GM",
     "LOT_NO": "LOT001",
     "DATECODE": "202604",
     "CREATE_USERID": "admin",
     "CREATE_USERNAME": "Administrator",
     "CREATE_TIME": "2026-04-15 10:00:00",
     "STATUS": 10,
     "CREATE_DATECODE": "2026-04-15 00:00:00",
     "PACKSIZE": 50,
     "ExpirationDate": "2027-04-15 00:00:00",
     "InitialQuantity": 100
    }
    }
  7. Query UID Interface
    Request Address: http://{IP}:{Test Port}/CTDZ_WmsApi/GetReelInfo
    Request Method: GET
    表格
    Submitted Parameter Name Description Required
    REEL_BARCODE UID Yes
    Request Example
    http://{IP}:{Test Port}/CTDZ_WmsApi/GetReelInfo?REEL_BARCODE=RB20260415002
    Response Result
    json
    {
    “errorcode”: 0,
    “content”: null,
    “info”: {
     "MATERIAL_NO": "101-10023-01",
     "QUANTITY": 200,
     "REEL_BARCODE": "RB20260415002",
     "WAREHOUSE": "81GM",
     "LOT_NO": "LOT001",
     "DATECODE": "202604",
     "CREATE_USERID": "admin",
     "CREATE_USERNAME": "Administrator",
     "CREATE_TIME": "2026-04-15 10:00:00",
     "STATUS": 10,
     "CREATE_DATECODE": "2026-04-15 00:00:00",
     "PACKSIZE": 50,
     "ExpirationDate": "2027-04-15 00:00:00",
     "InitialQuantity": 100
    }
    }
作者:潘茂盛  创建时间:2026-04-17 10:43
最后编辑:潘茂盛  更新时间:2026-04-17 10:46