Notify Packages (updatePackage)

Notify Packages (updatePackage)

It is used to notify Trendyol of the creation of the invoice of the order package. Notification of Invoice,a reference to prevent customer-originated cancellations reaching to Trendyol Customer Care Service.

You can only update the package of the order with 2 package status. Except for these statuses, the system is automatically transferred to the package. You can find detailed information about the statuses below.

  • While notifying the status, you should first notify "Picking" and then "Invoiced".

PUT updatePackage (Notify Packages as Picking)

As soon as you notify the Picking status, the phrase "Order Processed" will be displayed on the Trendyol panel. With this status, you can check the status of your orders on your side.

Sample Service Request

{
    "lines": [{
        "lineId": {lineId},
        "quantity": 3
    }],
    "params": {},
    "status": "Picking"
}

PUT updatePackage (Notify Packages as Invoiced)

As soon as you notify the Invoiced status, the phrase "Order Processed" will be displayed on the Trendyol panel. With this status, you can check the status of your orders on your side.

Sample Service Request

{
    "lines": [{
        "lineId": {lineId},
        "quantity": 3
    }],
    "params": {
        "invoiceNumber": "EME2018000025208"
    },
    "status": "Invoiced"
}