- eBay fulfillment openAPI
- OAuth
- SKU
- Stock
- Inbound
- Outbound
- Warehouse
- Pricing
Cost Estimation Request
Sandbox
Sandbox
POST
/calculate/v1/freightTrial
Pricing
Input the fulfillment center, consignee address info, seller OCSKUID or parcel dimension and weight.
In the Parcel, if SKUType is OCSKUID, parcel dimension and weight is not required. If the SKUType is not OCSKUID, the parcel dimension and weight are required.
Each request should have a unique referenceid. Get result by referenceid later.
Request
Header Params
clientKey
string
required
vAuthorization
string
required
Access-Token
string
required
Body Params application/json
apiVersion
string
optional
data
object (Calculate Request)
optional
companyName
string
optional
consigneeAddress1
string
optional
consigneeAddress2
string
optional
consigneeCity
string
optional
consigneeCountryCode
string
required
consigneeEmail
string
optional
consigneeName
string
optional
consigneePhone
string
optional
consigneePostCode
string
required
consigneeProvinceOrState
string
optional
houseNumber
string
optional
intlSelfPayment
boolean
optional
true:yes,
false:no
Default regard as yes.
Example:
false
mfservice
boolean
optional
true:ebay order (autofulfill not included);
false: non-eBay order;
Default regard as non-eBay order.
Example:
false
referenceId
string
required
serviceRegion
string
required
UK,DE,US-East,US-South,US-West,AU-Sydney,AU-Melbourne;
serviceType
string
optional
shippingServiceCode
array[string]
optional
skuList
array[object (Calculate Sku Info) {9}]
optional
skuType
boolean
optional
true:yes,
false:no;
If SKUs are OCSKUID, it will check whether the SKUs are verified, no necessary to input sku info such as dimension, weight, siop, battery,etc. However. If SKU are not OCSKUID, SKU info are required.
Example:
false
messageId
string
optional
timestamp
integer <int64>
optional
Example
{
"apiVersion": "",
"data": {
"companyName": "test",
"consigneeAddress1": "test",
"consigneeAddress2": "test",
"consigneeCity": "test",
"consigneeCountryCode": "AU",
"consigneeEmail": "test@test.com",
"consigneeName": "Amy Test",
"consigneePhone": "5700011111",
"consigneePostCode": "4610",
"consigneeProvinceOrState": "test",
"houseNumber": "202",
"intlSelfPayment": true,
"mfservice": true,
"referenceId": "16957823453791",
"serviceRegion": "AU",
"serviceType": "EF",
"shippingServiceCode": [],
"skuList": [
{
"height": 15,
"length": 10,
"pieceQuantity": 1,
"polybag": "true",
"siop": false,
"skuId": "OC0000250294068",
"weight": 1000,
"width": 2,
"withBattery": false
}
],
"skuType": true,
"warehouseRegionCode": "AU"
},
"messageId": "7891955650647900161",
"timestamp": 0
}
Request 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 'https://openapi-stage-hk.orangeconnex.com/openapi/calculate/v1/freightTrial' \
--header 'clientKey;' \
--header 'vAuthorization;' \
--header 'Access-Token;' \
--header 'Content-Type: application/json' \
--data-raw '{
"apiVersion": "",
"data": {
"companyName": "test",
"consigneeAddress1": "test",
"consigneeAddress2": "test",
"consigneeCity": "test",
"consigneeCountryCode": "AU",
"consigneeEmail": "test@test.com",
"consigneeName": "Amy Test",
"consigneePhone": "5700011111",
"consigneePostCode": "4610",
"consigneeProvinceOrState": "test",
"houseNumber": "202",
"intlSelfPayment": true,
"mfservice": true,
"referenceId": "16957823453791",
"serviceRegion": "AU",
"serviceType": "EF",
"shippingServiceCode": [],
"skuList": [
{
"height": 15,
"length": 10,
"pieceQuantity": 1,
"polybag": "true",
"siop": false,
"skuId": "OC0000250294068",
"weight": 1000,
"width": 2,
"withBattery": false
}
],
"skuType": true,
"warehouseRegionCode": "AU"
},
"messageId": "7891955650647900161",
"timestamp": 0
}'
Responses
🟢200OK
application/json
Body
code
integer <int32>
optional
data
boolean
optional
errors
array[object (CommonVendorResponseErrorMsgDto) {3}]
optional
code
string
optional
id
string
optional
message
string
optional
message
string
optional
messageId
string
optional
success
boolean
optional
Examples
{
"code": 1,
"message": "Authentication Fail:clientKey missing"
}
🟢201Created
🟠401Unauthorized
🟠403Forbidden
🟠404Not Found
Modified at 2023-11-30 02:58:57