supplementFbaOrderInfo

Request Service

  • supplementFbaOrderInfo

Request Method:

  • POST

Request Sample:

<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns1="http://www.example.org/">
    <SOAP-ENV:Body>
        <ns1:callService>
            <paramsJson>
                {
                  "order_code":"ZY-TEST-220322-0001",
                  "fba_no":"1122334455",
                  "fba_reference_no":"AA112344566",
                  "gain_goods_time":"2022-03-25 12:00:00",
                  "tracking_number":"B2723536346",
                  "file_items":[
                    {
                      "file_type":"png",
                      "file_name":"xxx.png",
                      "base64":"File Base64 encoding"
                    },
                    {
                      "file_type":"jpg",
                      "file_name":"file_name2",
                      "base64":"File Base64 encoding"
                    }]
                }
            </paramsJson>
            <appToken>appToken</appToken>
            <appKey>appKey</appKey>
            <service>supplementFbaOrderInfo</service>
        </ns1:callService>
    </SOAP-ENV:Body>
</SOAP-ENV:Envelope>

Request Parameter:

1.Some data are available only after the B2B order is created, so it is necessary to supplement the transfer information before delivery
2.When the order status is [to be shipped, abnormal], the transfer information can be supplemented
3.The transportation mode is the customer’s self collection channel, the pick-up time is required, and the BOL number is required
Parameter Type Required Remark Length Limited
order_code String Y B2B order number 50
fba_no String N FBA number (corresponding to Amazon background shipment ID) 64
fba_reference_no String Y FBA shipment tracking number (corresponding to Amazon reference ID of Amazon backend) 256
gain_goods_time String N Pick up time (Format: 2022-03-25 12:00:00) (local time of warehouse) pick up time shall be at least 3 working days after the order review time
tracking_number String Y Bol No 150
scheduled_delivery_time String N Scheduled delivery time (Format: 2022-03-25 12:00:00) (required when the address type is WAYFAIR) 150
po_code String N Po No. (required when the address type is WAYFAIR) 150

file_items:

The file size should not exceed 6M

Parameter Type Required Remark
file_type String N Common type(zip/pdf/docx/xlsx/png/jpg)
file_name String N file name
base64 String N Base64 encoding

Response Sample:

<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<SOAP-ENV:Envelope xmlns:ns1="http://www.example.org/" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/">
    <SOAP-ENV:Body>
        <ns1:callServiceResponse>
            <response>
                {
                  "ask":"Success",
                  "message":"Success"
                }
            </response>
        </ns1:callServiceResponse>
    </SOAP-ENV:Body>
</SOAP-ENV:Envelope>

Response Parameter:

Parameter Type Remark
ask String Return the result, success means the request is successful, failure means the request failed
message String Return information
Error Object Reference error format
作者:WesternPost  创建时间:2022-08-24 05:14
 更新时间:2024-12-31 02:56