Open Api
  1. Outbound order API
Open Api
  • Inbound order API
    • queryInboundListDetail
      POST
    • queryInventoryList
      POST
    • Inventory list
      POST
    • queryInboundList
      POST
    • queryInboundDetail
      POST
    • saveInboundInfo
      POST
    • modifyInboundInfo
      POST
    • inboundSubmit
      POST
    • Inbound order cancel
      POST
  • API service controller
    • Generate appKey and appSecret credentials.
      POST
    • Get appKey and appSecret information
      GET
    • Get app information list
      POST
    • Create API access token
      POST
    • Get API access token
      POST
  • Outbound order API
    • modifyOutbound
      POST
    • saveInboundInfo
      POST
  • Sku API
    • order list
      POST
  • Return order API
    • Untitled Endpoint
      POST
    • Untitled Endpoint
      POST
  • Schemas
    • Warehousing
    • PageTableInfoWarehousing
    • SaveOutBoundDetail
    • PageOpenApiTableInfoWarehousing
    • SaveOutbound
    • QueryWarehousingReq
    • AjaxResult
    • AjaxResultGenericsQueryWarehousingDetailResp
    • SaveOutboundOrderReq
    • QueryWarehousingDetailReq
    • AjaxResultGenericsString
    • SaveWarehousingReq
    • SaveInboundDetail
    • SaveInbound
    • ModifyWarehousingReq
    • ModifyInboundDetail
    • ModifyInbound
    • CancelInboundOrderReq
    • AppCredentials
    • ModifyAsnStateReq
    • RAppCredentials
    • AppInfoReq
    • CredentialsInfoDTO
    • PageTableInfoCredentialsInfoDTO
    • AppTokenReq
  1. Outbound order API

saveInboundInfo

POST
/outbound/save

Request

Body Params application/json

Example
{
    "appKey": "string",
    "accessToken": "string",
    "timestamp": 0,
    "sign": "string",
    "saveOutbound": {
        "shopId": "string",
        "businessType": "string",
        "fromPlatCode": "string",
        "operationSla": "string",
        "courierSla": "string",
        "requiredDeliveryTime": "string",
        "orderDueDate": "string",
        "customerName": "string",
        "customerContact": "string",
        "customerPhone": "string",
        "customerAddress": "string",
        "customerAddress2": "string",
        "customerCity": "string",
        "customerProvince": "string",
        "customerCountry": "string",
        "customerZipcode": "string",
        "customerEmail": "string",
        "cityCode": "string",
        "provinceCode": "string",
        "countryCode": "string",
        "soReference1": "string",
        "soReference2": "string",
        "soReference3": "string",
        "signatureRequired": "string",
        "noteText": "string",
        "expectedShipmentTime": "string",
        "warehouseId": "string",
        "fromOrderNo": "string",
        "carrierId": "string",
        "customerId": "string",
        "customerAddressId": 0,
        "details": [
            {
                "sku": "string",
                "unit": "string",
                "unitQty": 0,
                "isGift": "string",
                "productionDate": "string",
                "expirationDate": "string",
                "qualityCode": "string",
                "batchNo": "string"
            }
        ]
    }
}

Request Code Samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST '/outbound/save' \
--header 'Content-Type: application/json' \
--data-raw '{
    "appKey": "string",
    "accessToken": "string",
    "timestamp": 0,
    "sign": "string",
    "saveOutbound": {
        "shopId": "string",
        "businessType": "string",
        "fromPlatCode": "string",
        "operationSla": "string",
        "courierSla": "string",
        "requiredDeliveryTime": "string",
        "orderDueDate": "string",
        "customerName": "string",
        "customerContact": "string",
        "customerPhone": "string",
        "customerAddress": "string",
        "customerAddress2": "string",
        "customerCity": "string",
        "customerProvince": "string",
        "customerCountry": "string",
        "customerZipcode": "string",
        "customerEmail": "string",
        "cityCode": "string",
        "provinceCode": "string",
        "countryCode": "string",
        "soReference1": "string",
        "soReference2": "string",
        "soReference3": "string",
        "signatureRequired": "string",
        "noteText": "string",
        "expectedShipmentTime": "string",
        "warehouseId": "string",
        "fromOrderNo": "string",
        "carrierId": "string",
        "customerId": "string",
        "customerAddressId": 0,
        "details": [
            {
                "sku": "string",
                "unit": "string",
                "unitQty": 0,
                "isGift": "string",
                "productionDate": "string",
                "expirationDate": "string",
                "qualityCode": "string",
                "batchNo": "string"
            }
        ]
    }
}'

Responses

🟢200Success
application/json
Body

Example
{
  "": {}
}
Modified at 2024-12-19 19:31:06
Previous
modifyOutbound
Next
order list
Built with