pixi

Customer Orders

This page describes the exchange events published by pixi when orders and picklists are created, including OrderCreated and PicklistCreated. Each event includes its exchange name, payload fields, and a sample message.


Event Name

Exchange Name

OrderCreated

pixiEXOrderCreated

The event happens, when a new customer order gets created. This event is triggered in the following scenarios:

  • A new customer order is imported via pixi Order Import.

  • A new customer order is imported via API call pixiImportAddXML.

  • A new, empty customer order is manually created in pixi Customer Service application.

  • An offer is set to "won" in pixi Web application and therefore it gets transformed into a customer order.

The message, which is sent to the exchange, contains the following information:

  • OrderHeaderKey: Unique order number identifier

  • OrderNr: pixi order number


Example:
{
"data":[
{

"orderHeaderKey":142247,
"orderNr":142247

}
]
}


PicklistCreated

pixiEXPicklistCreated

The event happens, when a new picklist was created. It contains the following information:

  • PicklistHeaderId: Picklist number

  • LocationId

  • FromBox

  • ToBox

  • OneScanShipping: 0 = normal picklist, 1 = 1SS picklist

  • DaysBeforeBestBeforeDate: Number of days until the Best Before Date is reached

  • Comment

  • NumberOfOrdersOnPicklist: Number of orders included in this picklist


Example:
{
"data":[
{

"PicklistHeaderId":6296261,
"LocationId":"001",
"FromBox":0,
"ToBox":0,
"OneScanShipping":0,
"DaysBeforeBestBeforeDate":0,
"Comment":"Pickliste A",
"NumberOfOrdersOnPicklist":1

}
]
}