Get Order Detail
GET
/api/v2/public/order/{{omisell_order_number}}
Request Request Example
Shell
JavaScript
Java
Swift
curl --location -g --request GET 'https://api.omisell.com/api/v2/public/order/{{omisell_order_number}}' \
--header 'Authorization;' \
--header 'Seller-ID;' \
--header 'Country;'
Response Response Example
{
"data": {
"seller_id": 0,
"shop_id": 0,
"shop_name": "string",
"platform": "string",
"platform_name": "string",
"order_number": "string",
"omisell_order_number": "string",
"order_note": null,
"order_type": "string",
"status_id": 0,
"status_name": "string",
"parcels": [
{
"package_number": "string",
"pickup_id": 0,
"omisell_shipment_number": "string",
"wms_order_number": "string",
"courier_tracking_number": "string",
"courier_name": "string",
"courier_service": "string",
"shipment_status": 0,
"shipment_status_name": "string",
"catalogue_items": [
{
"catalogue_sku": "string",
"product_name": "string",
"product_type": "single",
"quantity": 0,
"weight": 0,
"original_price": 0,
"discounted_price": 0,
"discount_seller": 0,
"discount_platform": 0,
"voucher_seller": 0,
"voucher_platform": 0
}
],
"inventory_items": [
{
"inventory_sku": "string",
"catalogue_sku": "string",
"product_name": "string",
"quantity": 0,
"sale_price": 0,
"serial_numbers": [
"string"
],
"vendor_name": "string",
"vendor_id": "string",
"vendor_pickup_id": "string"
}
]
}
],
"payment_information": [
{
"origin_payment_method": "string",
"payment_method": "COD",
"payment_method_name": "string",
"transaction_amount": 0,
"transaction_status": "string",
"transaction_code": "string",
"transaction_external_code": "string",
"transaction_reference": "string",
"transaction_time": 0,
"transaction_note": "string"
}
],
"invoice_information": {
"tax_code": "string",
"company": "string",
"fullname": "string",
"address": "string",
"zip_code": "string",
"subdistrict_name": "string",
"district_name": "string",
"province_name": "string",
"country_name": "string"
},
"shipping_information": {
"origin_shipping_fee": 0,
"buyer_shipping_fee": 0,
"seller_shipping_fee": 0,
"platform_ship_rebate": 0,
"seller_ship_rebate": 0
},
"receiver": {
"fullname": "string",
"email": "string",
"phone": "string",
"address": "string",
"country": "string",
"zip_code": "string",
"province_name": "string",
"province_id": 0,
"district_name": "string",
"district_id": 0,
"subdistrict_name": null,
"subdistrict_id": null
},
"seller_voucher_code": [
{
"name": "string",
"code": "string",
"amount": "string"
}
],
"seller_discount_amount": "string",
"omisell_created_time": "string",
"created_time": 0,
"rts_time": 0,
"shipped_time": 0,
"completed_time": 0,
"updated_time": 0,
"external_information": {
"cart_id": "string"
}
},
"error": true,
"error_code": 0,
"messages": "string",
"request_id": "string"
}
Request
Header Params
Content-Type
string
required
Default:
application/json
Authorization
string
required
Default:
Omi {{Token}}
Seller-ID
number
optional
Country
string
optional
Examples:
THVNPHIDMY
Responses
Modified at 2024-04-03 07:33:46