Skip to main content

Documentation Portal

UpdateOrderStatus (Global-e to Merchant)

Updates the order status on the merchant's site. Only order.OrderId and order.StatusCode members are mandatory for this method.

This method is required to support order cancellation when initiated on Global-e’s side. It can also be used for reporting other order status updates as they occur in the Global-e’s system, and reflect them in the Merchant’s system.

Method/URL

POST https://www.merchant-site-domain.com/order-status-update-only-url
Parameters

Requests can contain more parameters than listed.

Request

Name

Type

Description

Mandatory

order

Object Merchant.Order

Merchant.Order objects contain information about orders.

Yes

Response

Note

Some values are encoded and require the merchant to decode them, for example URLs, addresses, emails, and phone numbers.

Name

Type

Description

ResponseInfo

Object Merchant.ResponseInfo

Indicates if the API call was successful or not and why.

Request Body
{
    "MerchantGUID": "abcdabcd-abcd-abcd-abcd-abcdabcdabcd",
    "OrderId": "GE123874638GB",
    "MerchantOrderId": "14123332",
    "StatusCode": "canceled"
}