POST api/OrderJobRegister/SellershipmentfortopAmazon

Request Information

URI Parameters

None.

Body Parameters

Collection of AmazonDeliveryDto
NameDescriptionTypeAdditional information
OrderId

integer

None.

AmazonOrderID

string

None.

FulfillmentDate

date

None.

CarrierCode

string

None.

CarrierName

string

None.

ShipperTrackingNumber

string

None.

ItemList

Collection of AmazonDeliveryItemDto

None.

IsSham

boolean

None.

EnterpriseId

integer

None.

ShopAccount

string

None.

Request Formats

application/json, text/json

Sample:
[
  {
    "OrderId": 1,
    "AmazonOrderID": "sample string 2",
    "FulfillmentDate": "2026-08-11T21:22:34.9331437+08:00",
    "CarrierCode": "sample string 4",
    "CarrierName": "sample string 5",
    "ShipperTrackingNumber": "sample string 6",
    "ItemList": [
      {
        "AmazonOrderItemCode": "sample string 1",
        "Quantity": 2
      },
      {
        "AmazonOrderItemCode": "sample string 1",
        "Quantity": 2
      }
    ],
    "IsSham": true,
    "EnterpriseId": 8,
    "ShopAccount": "sample string 9"
  },
  {
    "OrderId": 1,
    "AmazonOrderID": "sample string 2",
    "FulfillmentDate": "2026-08-11T21:22:34.9331437+08:00",
    "CarrierCode": "sample string 4",
    "CarrierName": "sample string 5",
    "ShipperTrackingNumber": "sample string 6",
    "ItemList": [
      {
        "AmazonOrderItemCode": "sample string 1",
        "Quantity": 2
      },
      {
        "AmazonOrderItemCode": "sample string 1",
        "Quantity": 2
      }
    ],
    "IsSham": true,
    "EnterpriseId": 8,
    "ShopAccount": "sample string 9"
  }
]

application/xml, text/xml

Sample:
<ArrayOfAmazonDeliveryDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/MS.AliExpress.Model.ApiModel">
  <AmazonDeliveryDto>
    <AmazonOrderID>sample string 2</AmazonOrderID>
    <CarrierCode>sample string 4</CarrierCode>
    <CarrierName>sample string 5</CarrierName>
    <EnterpriseId>8</EnterpriseId>
    <FulfillmentDate>2026-08-11T21:22:34.9331437+08:00</FulfillmentDate>
    <IsSham>true</IsSham>
    <ItemList>
      <AmazonDeliveryItemDto>
        <AmazonOrderItemCode>sample string 1</AmazonOrderItemCode>
        <Quantity>2</Quantity>
      </AmazonDeliveryItemDto>
      <AmazonDeliveryItemDto>
        <AmazonOrderItemCode>sample string 1</AmazonOrderItemCode>
        <Quantity>2</Quantity>
      </AmazonDeliveryItemDto>
    </ItemList>
    <OrderId>1</OrderId>
    <ShipperTrackingNumber>sample string 6</ShipperTrackingNumber>
    <ShopAccount>sample string 9</ShopAccount>
  </AmazonDeliveryDto>
  <AmazonDeliveryDto>
    <AmazonOrderID>sample string 2</AmazonOrderID>
    <CarrierCode>sample string 4</CarrierCode>
    <CarrierName>sample string 5</CarrierName>
    <EnterpriseId>8</EnterpriseId>
    <FulfillmentDate>2026-08-11T21:22:34.9331437+08:00</FulfillmentDate>
    <IsSham>true</IsSham>
    <ItemList>
      <AmazonDeliveryItemDto>
        <AmazonOrderItemCode>sample string 1</AmazonOrderItemCode>
        <Quantity>2</Quantity>
      </AmazonDeliveryItemDto>
      <AmazonDeliveryItemDto>
        <AmazonOrderItemCode>sample string 1</AmazonOrderItemCode>
        <Quantity>2</Quantity>
      </AmazonDeliveryItemDto>
    </ItemList>
    <OrderId>1</OrderId>
    <ShipperTrackingNumber>sample string 6</ShipperTrackingNumber>
    <ShopAccount>sample string 9</ShopAccount>
  </AmazonDeliveryDto>
</ArrayOfAmazonDeliveryDto>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

ResponseResultOfBoolean
NameDescriptionTypeAdditional 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>