...
接口请求示例
URL:http://test.birdsystem.com/client/delivery-service?id=5217
...
language | js |
---|---|
firstline | 查询邮递服务接口 |
title | URL:http://test.birdsystem.com/client/delivery-service?id=5217 |
linenumbers | true |
collapse | true |
company_id:{{bs.default_company_id}}
...
api_key:{{bs.default_api_key}}
...
id:5217
接口返回示例
Code Block | ||||||||
---|---|---|---|---|---|---|---|---|
| ||||||||
{ "total": 1, "data": [ { "id": 5217, "company_id": 36, "restrict_max_length_contact": "20", "restrict_max_length_address_line1": "20", "restrict_max_length_address_line2": "35", "restrict_max_length_address_line3": "35", "restrict_max_length_post_code": "0", "restrict_regex_post_code": null, "restrict_regex_telephone": null, "name": "飞鸟小包", "locale_name": "", "is_signature": "0", "is_tracking": "0", "is_express": "0", "is_international": "0", "is_customs_required": "0", "is_check_post_code": "0", "is_check_telephone": "0", "is_allow_urgent_consignment": "1", "is_hide_delivery_reference_to_consignment": "0", "special_type": null, "consignment_type": "LOCAL", "consignment_notice_enable": "0", "consignment_notice": "", "status": "ACTIVE" } ], "success": true, "moduleName": "client" } |
...
返回字段 | 字段类型 | 说明 |
---|---|---|
id | int | 产品属性ID |
name | string | 产品属性名称 |
value_type | string | 产品属性种类 |
default_value | string | 产品属性默认值 |
symbol | string | 产品属性符号 |
is_separate_picking_list | int | 是否创建单独的拣货单 |
is_separate_warehouse_transfer | int | 是否创建单独的调拨单 |
consignment_priority | int | 订单属性优先级 |
picking_list_group | string | 渠道属性分组 |
create_time | string | 创建时间 |
special_type | string | 特殊类别 |
primary_keys | string | 主键列名 |
2.2.1接口示例:
...
接口请求示例:
地址:http://test.birdsystem.com/client/product-customs-property
...
http://test.birdsystem.com/client/product-customs-property
...
...
company_id:{{bs.default_company_id}}
...
api_key:{{bs.default_api_key}}
...
id:1
接口返回示例:
Code Block | ||||||||
---|---|---|---|---|---|---|---|---|
| ||||||||
{ "total": 1, "data": [ { "id": 1, "name": "内置锂离子电池", "value_type": "BOOL", "default_value": "sdsf", "symbol": "#", "is_separate_picking_list": "1", "is_separate_warehouse_transfer": "1", "consignment_priority": "2", "picking_list_group": "HK", "create_time": "2015-07-07 10:12:52", "special_type": "BETTERY", "primary_keys": [ "id" ] } ], "success": true, "moduleName": "client" } |
...