- Account
- Category
- Company
- Customer
- Freightfee
- Goodslocation
- Goodsowner
- Rolemenu
- Spu
- Supplier
- User
- Userrole
- Warehouse
- Warehousearea
- Action_log
- Asn
- Arrival list
- get Arrival list
- add a new record
- update record
- delete a record
- page search, sqlTitle input asn_status:0 ~ 4
- get a record by id
- add a new record
- update a record
- delete a record
- Bulk modify Goodsowner
- Confirm Delivery change the asn_status from 0 to 1
- Cancel confirm, change asn_status 1 to 0
- Unload change the asn_status from 1 to 2
- Cancel unload change the asn_status from 2 to 1
- sorting, add a new asnsort record and update asn sorted_qty
- get asnsorts list by asn_id
- update or delete asnsorts data
- Sorted change the asn_status from 2 to 3
- Cancel sorted change the asn_status from 3 to 2
- get pending putaway data by asn_id
- PutAway
- Dispatchlist
- page search
- advanced dispatch order page search
- add a new record
- update dispatchlist with same dispatch_no
- delete a record
- get dispatchlist by dispatch_no
- get Dispatchlist details with available stock
- get pick list by dispatch_id
- Confirm orders and create dispatchpicklist
- confirm dispatchpicklist picked by dispatch_no
- package dispatchpicklist
- weight dispatchpicklist
- dispatchpicklist outbound delivery
- set dispatchlist freightfee
- sign for arrival
- cancel order opration
- cancel dispatchlist detail opration
- PrintSolution
- Stock
- Stockadjust
- Stockfreeze
- Stockmove
- Stockprocess
- Stocktaking
import customers by excel
POST
/customer/excel
Customer
请求参数
Body 参数application/json
array of:
customer_name
string
必需
>= 1 字符<= 256 字符
city
string | null
city
<= 128 字符
address
string | null
address
<= 256 字符
manager
string | null
manager
<= 64 字符
email
string | null
email
<= 128 字符
contact_tel
string | null
可选
<= 64 字符
_XID
string | null
_XID
errorMsg
string | null
可选
示例
[
{
"customer_name": "string",
"city": "string",
"address": "string",
"manager": "string",
"email": "string",
"contact_tel": "string",
"_XID": "string",
"errorMsg": "string"
}
]
示例代码
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location --request POST '/customer/excel' \
--header 'Content-Type: application/json' \
--data-raw '[
{
"customer_name": "string",
"city": "string",
"address": "string",
"manager": "string",
"email": "string",
"contact_tel": "string",
"_XID": "string",
"errorMsg": "string"
}
]'
返回响应
🟢200Success
application/json
Body
http response viewmodel
isSuccess
boolean
可选
code
integer <int32>
可选
errorMessage
string | null
可选
data
array[object (CustomerImportViewModel) {8}] | null
data
customer_name
string
必需
>= 1 字符<= 256 字符
city
string | null
city
<= 128 字符
address
string | null
address
<= 256 字符
manager
string | null
manager
<= 64 字符
email
string | null
email
<= 128 字符
contact_tel
string | null
可选
<= 64 字符
_XID
string | null
_XID
errorMsg
string | null
可选
示例
{
"isSuccess": true,
"code": 0,
"errorMessage": "string",
"data": [
{
"customer_name": "string",
"city": "string",
"address": "string",
"manager": "string",
"email": "string",
"contact_tel": "string",
"_XID": "string",
"errorMsg": "string"
}
]
}
修改于 2023-10-10 03:03:53