- Outbound Orders
- Get SalesOrder ListGET
- Create a SalesOrderPOST
- Get Sales Order InformationGET
- Sales Order AcknowledgementPOST
- Bulk Upload SalesOrdersPOST
- Get Job Status of an Async Bulk Sales Order ImportGET
- Get a single SalesOrderGET
- Update SalesOrderPUT
- Cancel SalesOrderDELETE
- Get Shipments for a Sales OrderGET
- Get B2B Customers For Business UnitGET
- Ship Confirmation
- Business Units
- Get Buildings associated to a Business UnitGET
- Remove associated Building from a Business UnitDELETE
- Associate a Building to a Business UnitPUT
- Get Business Unit DetailGET
- Update Business UnitPUT
- List Business UnitsGET
- Create Business UnitPOST
- Get Business Unit General SettingsGET
- Update Business Unit General SettingsPUT
- Update Business Unit Amazon SFP KeysPUT
- Remove Business Unit Amazon SFP KeysDELETE
- Get Business Unit Amazon SFP KeysGET
- List Broker AccountsGET
- Create Broker AccountPOST
- Delete Broker AccountDELETE
- Product
- Inbound
- List Inbound ASNs
- Create Inbound ASN
- Get single Inbound ASN
- Update single Inbound ASN
- Cancel single Inbound ASN
- Get receipt lines for single Inbound ASN
- Get receipt lines for single Inbound RMA
- Get single Inbound RMA
- Update single Inbound RMA
- Cancel single Inbound RMA
- List Inbound RMAs
- Create Inbound RMA
- Get receipt lines for single Inbound PO
- Get single Inbound PO
- Update single Inbound PO
- Cancel single Inbound PO
- List Inbound POs
- Create Inbound PO
- Inventory
- Inventory Movement
- TMS Endpoints
Get Sales Order Information
GET
/getSalesOrder/{company_no}/orders
Outbound Orders
Request
Path Params
company_no
string
required
Query Params
limit
integer
optional
Default:
100
customerOrderNumber
string
optional
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 GET '/getSalesOrder//orders'
Responses
🟢200successful operation
application/json
Body
data
array [object {31}]
optional
orderLines
array [object {10}]
optional
customerOrderNumber
string
optional
jobId
string
optional
orderCreatedDate
string
optional
requestedBuildingId
string
optional
shipTo
object
optional
notes
string
optional
carrierId
string
optional
shippingSpeed
string
optional
deliveryInstructions1
string
optional
deliveryInstructions2
string
optional
buyerOrderNumber
string
optional
fulfillFlag
boolean
optional
fillKillIndicator
string
optional
customerOrderType
string
optional
billTo
object
optional
giftMessage
string
optional
orderAmount
number
optional
isSignatureRequired
boolean
optional
isInsuranceRequired
boolean
optional
orderDropDate
string
optional
customerDates
object
optional
salesChannelOrderInfo
object
optional
customerId
string
optional
priority
string
optional
shipServiceLevel
string
optional
purchaseOrderNumber
string
optional
accessorials
array [object {3}]
optional
thirdPartyAccountNumber
string
optional
useAccountFrom
string
optional
brandId
string
optional
Example
{
"data": [
{
"orderLines": [
{
"skuId": "string",
"quantity": 0,
"quantityMeasure": "string",
"customerLineNumber": "string",
"customerSku": "string",
"giftMessage": "string",
"notes": "string",
"lineType": "string",
"amount": 0,
"giftCardInfo": {
"amount": 0,
"code": "string",
"detail": "string",
"type": "string"
}
}
],
"customerOrderNumber": "string",
"jobId": "string",
"orderCreatedDate": "string",
"requestedBuildingId": "string",
"shipTo": {
"name": "string",
"address1": "string",
"address2": "string",
"address3": "string",
"city": "string",
"state": "string",
"country": "string",
"postalCode": "string",
"email": "string",
"phoneNumber": "string",
"faxNumber": "string",
"attentionTo": "string"
},
"notes": "string",
"carrierId": "string",
"shippingSpeed": "string",
"deliveryInstructions1": "string",
"deliveryInstructions2": "string",
"buyerOrderNumber": "string",
"fulfillFlag": true,
"fillKillIndicator": "string",
"customerOrderType": "string",
"billTo": {
"name": "string",
"address1": "string",
"address2": "string",
"address3": "string",
"city": "string",
"state": "string",
"country": "string",
"postalCode": "string",
"email": "string",
"phoneNumber": "string",
"faxNumber": "string",
"attentionTo": "string"
},
"giftMessage": "string",
"orderAmount": 0,
"isSignatureRequired": true,
"isInsuranceRequired": true,
"orderDropDate": "string",
"customerDates": {
"requestedDeliveryDate": "string",
"requestedShipDate": "string",
"deliveryStartDate": "string",
"deliveryEndDate": "string",
"doNotShipBefore": "string",
"doNotShipAfter": "string",
"cancelAfter": "string",
"cancelIfNotDeliveredBy": "string"
},
"salesChannelOrderInfo": {
"salesChannelName": "string",
"orderNumber": "string",
"purchaseDate": "string",
"lastUpdateDate": "string",
"shipServiceLevel": "string",
"earliestShipDate": "string",
"latestShipDate": "string",
"earliestDeliveryDate": "string",
"latestDeliveryDate": "string"
},
"customerId": "string",
"priority": "string",
"shipServiceLevel": "string",
"purchaseOrderNumber": "string",
"accessorials": [
{
"code": "string",
"accessorialType": "string",
"parameters": [
{
"name": "string",
"value": "string"
}
]
}
],
"thirdPartyAccountNumber": "string",
"useAccountFrom": "string",
"brandId": "string"
}
]
}
🟢202Get Sales Order Successful
🟠400Get Sales Order failed
🟠401Authentication Failed
🔴500Error in Server
Modified at 2024-07-02 10:16:06