Operation Id:
orders/packages/post [Official Documentaction]
Methods
- orderPackages Array<Object>
- eventId String
- eventType 'order'|'rma'|'return'
- packages Array<Object>
Examples
This function posts the information of an order package with a courier and delivery package number to the event with the specified ID.
Loading editor...
const result = await idosellRequest.postOrdersPackages
.eventId("9")
.eventType("order")
.packages([{
"courierId": "10",
"deliveryPackageNumber": "123465789A"
}])
.exec();