Get iccs

  • 查询通关符

Request

  • Path: oms/iccs/getOne
  • Method: GET
  • Header:
    • Authorization: Basic c2FiZXI6c2FiZXJfc2VjcmV0
    • Blade-Auth: access_token
  • Supported query params
    • name: 姓名
    • phone: ‘手机号’
  • Example: http://api.q9610.com/oms/iccs/getOne?name=최민애&phone=010-25621144

Response

  • Response body example:
    • 查询到结果
      1
      2
      3
      4
      5
      6
      7
      8
      9
      10
      {
      "code": 200,
      "success": true,
      "data": {
      "pcc": "P200030235222",
      "phone": "010-2562-1144",
      "name": "최민애"
      },
      "msg": "操作成功"
      }
    • 未查询到结果
      1
      2
      3
      4
      5
      6
      {
      "code": 200,
      "success": true,
      "data": {},
      "msg": "操作成功"
      }
    • 请求错误
      1
      2
      3
      4
      5
      6
      {
      "code": 400,
      "success": false,
      "data": {},
      "msg": "手机号不能为空"
      }