POST api/OrderJobRegister/SyncOrderByOrderNos
Request Information
URI Parameters
None.
Body Parameters
Collection of SyncOrderByOrderNosDto| Name | Description | Type | Additional information |
|---|---|---|---|
| ShopId | integer |
None. |
|
| EnterpriseId | integer |
None. |
|
| OrderNos | Collection of string |
None. |
Request Formats
application/json, text/json
Sample:
[
{
"ShopId": 1,
"EnterpriseId": 2,
"OrderNos": [
"sample string 1",
"sample string 2"
]
},
{
"ShopId": 1,
"EnterpriseId": 2,
"OrderNos": [
"sample string 1",
"sample string 2"
]
}
]
application/xml, text/xml
Sample:
<ArrayOfSyncOrderByOrderNosDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/MS.AliExpress.Api.Controllers">
<SyncOrderByOrderNosDto>
<EnterpriseId>2</EnterpriseId>
<OrderNos xmlns:d3p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d3p1:string>sample string 1</d3p1:string>
<d3p1:string>sample string 2</d3p1:string>
</OrderNos>
<ShopId>1</ShopId>
</SyncOrderByOrderNosDto>
<SyncOrderByOrderNosDto>
<EnterpriseId>2</EnterpriseId>
<OrderNos xmlns:d3p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d3p1:string>sample string 1</d3p1:string>
<d3p1:string>sample string 2</d3p1:string>
</OrderNos>
<ShopId>1</ShopId>
</SyncOrderByOrderNosDto>
</ArrayOfSyncOrderByOrderNosDto>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
ResponseResultOfBoolean| Name | Description | Type | Additional information |
|---|---|---|---|
| Status | boolean |
None. |
|
| ErrorCode | string |
None. |
|
| ErrorMessage | string |
None. |
|
| Data | boolean |
None. |
Response Formats
application/json, text/json
Sample:
{
"Status": true,
"ErrorCode": "sample string 2",
"ErrorMessage": "sample string 3",
"Data": true
}
application/xml, text/xml
Sample:
<ResponseResultOfboolean xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/MS.AliExpress.Api.Models"> <Data>true</Data> <ErrorCode>sample string 2</ErrorCode> <ErrorMessage>sample string 3</ErrorMessage> <Status>true</Status> </ResponseResultOfboolean>