From 2f26cbe223fa22d8b3e42379c33441e53ca8cab1 Mon Sep 17 00:00:00 2001 From: krupesh-patel Date: Wed, 16 Apr 2025 11:50:14 +0530 Subject: [PATCH] fix: order details params --- src/utils/ds_client.ts | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/utils/ds_client.ts b/src/utils/ds_client.ts index 577220c..7e7c1f4 100644 --- a/src/utils/ds_client.ts +++ b/src/utils/ds_client.ts @@ -257,7 +257,11 @@ export class DropshipperClient extends AESystemClient { * @link https://open.aliexpress.com/doc/api.htm#/api?cid=21038&path=aliexpress.trade.ds.order.get&methodType=GET/POST */ async orderDetails(args: DS_Get_Order_Params) { - let response = await this.execute("aliexpress.trade.ds.order.get", args); + let response = await this.execute("aliexpress.ds.trade.order.get", + { + single_order_query: JSON.stringify(args), + }, + ); if (response.ok) { response.data.aliexpress_trade_ds_order_get_response =