- 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 Unit
- Remove associated Building from a Business Unit
- Associate a Building to a Business Unit
- Get Business Unit Detail
- Update Business Unit
- List Business Units
- Create Business Unit
- Get Business Unit General Settings
- Update Business Unit General Settings
- Update Business Unit Amazon SFP Keys
- Remove Business Unit Amazon SFP Keys
- Get Business Unit Amazon SFP Keys
- List Broker Accounts
- Create Broker Account
- Delete Broker Account
- Product
- Inbound
- List Inbound ASNsGET
- Create Inbound ASNPOST
- Get single Inbound ASNGET
- Update single Inbound ASNPUT
- Cancel single Inbound ASNDELETE
- Get receipt lines for single Inbound ASNGET
- Get receipt lines for single Inbound RMAGET
- Get single Inbound RMAGET
- Update single Inbound RMAPUT
- Cancel single Inbound RMADELETE
- List Inbound RMAsGET
- Create Inbound RMAPOST
- Get receipt lines for single Inbound POGET
- Get single Inbound POGET
- Update single Inbound POPUT
- Cancel single Inbound PODELETE
- List Inbound POsGET
- Create Inbound POPOST
- Inventory
- Inventory Movement
- TMS Endpoints
Get receipt lines for single Inbound PO
GET
/business_units/{businessUnitId}/purchase_orders/{poNumber}/receipts
Inbound
Request
Path Params
businessUnitId
string
required
poNumber
string
required
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 '/business_units//purchase_orders//receipts'
Responses
🟢200OK
application/json
Body
data
array[object (ReceiptLine) {17}]
optional
sku
object (SkuReference)
optional
qty
string
optional
dispositionCode
string
optional
lpn
object
optional
lot
object
optional
numberOfCases
string
optional
unitsPerCase
string
optional
uom
enum<string>
optional
Allowed values:
EACHCASEPACKETC
receiptQty
string
optional
holdCode
string
optional
weight
object
optional
receivedErrorCode
string
optional
receivedUser
string
optional
receivedTimestamp
string
optional
receiptId
string
optional
attachments
array [object {3}]
optional
buildingId
string
optional
Example
{
"data": [
{
"sku": {
"skuId": "string",
"name": "255",
"description1": "string",
"description2": "string"
},
"qty": "string",
"dispositionCode": "string",
"lpn": {
"status": "string",
"number": "string"
},
"lot": {
"lotId": "string",
"expiration": "2019-08-24"
},
"numberOfCases": "string",
"unitsPerCase": "string",
"uom": "EACH",
"receiptQty": "string",
"holdCode": "string",
"weight": {
"net": "string",
"gross": "string",
"uom": "string"
},
"receivedErrorCode": "string",
"receivedUser": "string",
"receivedTimestamp": "string",
"receiptId": "string",
"attachments": [
{
"url": "string",
"notes": "string",
"mediaType": "image"
}
],
"buildingId": "string"
}
]
}
Modified at 2024-07-02 10:16:06