Purchase order (PO) created event

This event occurs when a new purchase order is created for the seller.

When the purchase order event occurs, the seller will receive the response payload on the destination URL, as given in the samples.

  • Event Type: PO_CREATED
  • Event Version: V1
  • Resource Name: ORDER

Response parameters

NameDescriptionType
 sourceEvent Meta informationObject
eventTypeEvent for which the notification is receivedString
eventTimeTime at which the event occursString
eventIdUnique ID of the eventString
 payloadEvent detailsObject
partnerIdSeller’s Partner IDString
purchaseOrderIdA unique ID associated with the seller’s purchase orderString
customerOrderIdA unique ID associated with the sales order for a specified customerString
orderDateThe date the customer submitted the sales orderString
estimatedDeliveryDateThe estimated time and date for the delivery of the itemString
estimatedShipDateThe estimated time and date when the item will be shippedString
orderLinesPurchase Order line information for each itemList of OrderLine
lineNumberThe line number associated with the details for each item in the purchase orderString
skuA unique ID that identifies the itemString
productNameName of the itemString
quantityDetails about the quantityObject
unitOfMeasureUnit of measurementString
measurementValueQuantity valueString
statusStatus of the order line. Example: CREATEDString
statusDateDate of most recent status shown on the orderString
shippingProgramTypeGives shipping program information. Examples: TWO_DAY, THREE_DAY, etc.String
shippingMethodShipping Method. Examples: Value, Expedited, Standard, etc.String
shipNodeTypeSpecifies the type of shipNode. Possible values are: SellerFulfilled, WFSFulfilled, and 3PLFulfilled.String

Sample payload: Purchase order created

{ "source": { "eventType": "PO_CREATED", "eventTime": "2020-07-29T13:47:18.442Z", "eventId": "04d868a0-d1a2-11ea-a710-459752d002e8" }, "payload": { "partnerId": "10000682332", "purchaseOrderId": "2802123876439", "customerOrderId": "4822046869501", "orderDate": "2020-07-29T13:45:45.000Z", "estimatedDeliveryDate": "2020-08-06T19:00:00.000Z", "estimatedShipDate": "2020-07-31T03:00:00.000Z", "orderLines": [ { "lineNumber": "1", "sku": "05S41A031", "productName": "Girls Flip Flops 13-1 M US Little Kid Cute Mix N Match Print Slip On Summer Sandal F- Hello Summer", "quantity": { "unitOfMeasure": "EACH", "measurementValue": "1" }, "status": "Created", "statusDate": "2020-07-29T13:47:18.216Z", "shippingProgramType": "TWO_DAY", "shippingMethod": "STANDARD" }, { "lineNumber": "2", "sku": "05S41A003", "productName": "Girls Flip Flops 13-1 M US Little Kid Cute Mix N Match Print Slip On Summer Thong Sandal E- Magical", "quantity": { "unitOfMeasure": "EACH", "measurementValue": "1" }, "status": "Created", "statusDate": "2020-07-29T13:47:18.219Z", "shippingProgramType": "TWO_DAY", "shippingMethod": "STANDARD" } ], "shipNodeType": "SellerFulfilled" }
}