POST api/ShopSalesAnalysis/GetShopReport
Request Information
URI Parameters
None.
Body Parameters
ShopSalesAnalysisReportReq| Name | Description | Type | Additional information |
|---|---|---|---|
| CountryCodes | Collection of string |
None. |
|
| Sort | SearchSort |
None. |
|
| QuerySummaryInfo | boolean |
None. |
|
| Currency | CurrencyTypeEnum |
None. |
|
| Periodic | ShopReportPeriodicEnum |
None. |
|
| StartTime | date |
None. |
|
| EndTime | date |
None. |
|
| PlatformTypes | Collection of PlatformType |
None. |
|
| ShopIds | Collection of integer |
None. |
|
| BrushOrderType | BrushOrderTypeEnum |
None. |
|
| PageIndex | integer |
None. |
|
| PageSize | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"CountryCodes": [
"sample string 1",
"sample string 2"
],
"Sort": {
"Field": "sample string 1",
"IsDesc": true
},
"QuerySummaryInfo": true,
"Currency": 0,
"Periodic": 0,
"StartTime": "2026-08-11 21:22:33",
"EndTime": "2026-08-11 21:22:33",
"PlatformTypes": [
0,
0
],
"ShopIds": [
1,
2
],
"BrushOrderType": 0,
"PageIndex": 4,
"PageSize": 5
}
application/xml, text/xml
Sample:
<ShopSalesAnalysisReportReq xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/MS.Report.Model.Shop.ShopAnalysis">
<PageIndex xmlns="http://schemas.datacontract.org/2004/07/MS.Common">4</PageIndex>
<PageSize xmlns="http://schemas.datacontract.org/2004/07/MS.Common">5</PageSize>
<BrushOrderType xmlns="http://schemas.datacontract.org/2004/07/MS.Report.Model.Shop">Normal</BrushOrderType>
<Currency xmlns="http://schemas.datacontract.org/2004/07/MS.Report.Model.Shop">CNY</Currency>
<EndTime xmlns="http://schemas.datacontract.org/2004/07/MS.Report.Model.Shop">2026-08-11T21:22:33.5514356+08:00</EndTime>
<Periodic xmlns="http://schemas.datacontract.org/2004/07/MS.Report.Model.Shop">SelectDateRange</Periodic>
<PlatformTypes xmlns:d2p1="http://schemas.datacontract.org/2004/07/Willv.Common.Enum" xmlns="http://schemas.datacontract.org/2004/07/MS.Report.Model.Shop">
<d2p1:PlatformType>AliExpress</d2p1:PlatformType>
<d2p1:PlatformType>AliExpress</d2p1:PlatformType>
</PlatformTypes>
<ShopIds xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays" xmlns="http://schemas.datacontract.org/2004/07/MS.Report.Model.Shop">
<d2p1:int>1</d2p1:int>
<d2p1:int>2</d2p1:int>
</ShopIds>
<StartTime xmlns="http://schemas.datacontract.org/2004/07/MS.Report.Model.Shop">2026-08-11T21:22:33.5514356+08:00</StartTime>
<CountryCodes xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:string>sample string 1</d2p1:string>
<d2p1:string>sample string 2</d2p1:string>
</CountryCodes>
<QuerySummaryInfo>true</QuerySummaryInfo>
<Sort xmlns:d2p1="http://schemas.datacontract.org/2004/07/MS.Report.Model.Product">
<d2p1:Field>sample string 1</d2p1:Field>
<d2p1:IsDesc>true</d2p1:IsDesc>
</Sort>
</ShopSalesAnalysisReportReq>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
ResponseResultOfGetShopReportRes| Name | Description | Type | Additional information |
|---|---|---|---|
| Status | boolean |
None. |
|
| ErrorCode | string |
None. |
|
| ErrorMessage | string |
None. |
|
| Data | GetShopReportRes |
None. |
Response Formats
application/json, text/json
Sample:
{
"Status": true,
"ErrorCode": "sample string 2",
"ErrorMessage": "sample string 3",
"Data": {
"SummaryInfo": {
"OrderTotal": 1,
"Amount": 2.0,
"CustomerTotal": 3,
"PayMentAmount": 4.0,
"RefundAmount": 5.0,
"PayMentCustomerTotal": 6,
"CustomerAvePrice": 0.67
},
"PageData": {
"Rows": [
{
"PayMentRate": 171.43,
"RefundRate": 190.91,
"CustomerAvePrice": 0.77,
"PlatformType": "sample string 1",
"ShopName": "sample string 2",
"ShopId": 3,
"Currency": "sample string 4",
"ReportDate": 5,
"SalesTotal": 6,
"OrderTotal": 7,
"Amount": 8.0,
"CustomerTotal": 9,
"PayMentAmount": 10.0,
"PayMentSalesTotal": 11,
"PayMentTotal": 12,
"PayMentCustomerTotal": 13,
"ActiveProductTotal": 14,
"CostPrice": 15.0,
"AdvertisingFee": 16.0,
"PlatformFee": 17.0,
"PromotionFee": 18.0,
"LogisticsCost": 19.0,
"RefundOrderTotal": 20,
"RefundTotal": 21,
"RefundAmount": 22.0
},
{
"PayMentRate": 171.43,
"RefundRate": 190.91,
"CustomerAvePrice": 0.77,
"PlatformType": "sample string 1",
"ShopName": "sample string 2",
"ShopId": 3,
"Currency": "sample string 4",
"ReportDate": 5,
"SalesTotal": 6,
"OrderTotal": 7,
"Amount": 8.0,
"CustomerTotal": 9,
"PayMentAmount": 10.0,
"PayMentSalesTotal": 11,
"PayMentTotal": 12,
"PayMentCustomerTotal": 13,
"ActiveProductTotal": 14,
"CostPrice": 15.0,
"AdvertisingFee": 16.0,
"PlatformFee": 17.0,
"PromotionFee": 18.0,
"LogisticsCost": 19.0,
"RefundOrderTotal": 20,
"RefundTotal": 21,
"RefundAmount": 22.0
}
],
"Total": 1,
"PageIndex": 2,
"PageSize": 3
}
}
}
application/xml, text/xml
Sample:
<ResponseResultOfGetShopReportResAIo4_PnOe xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Willv.Common">
<Data xmlns:d2p1="http://schemas.datacontract.org/2004/07/MS.Report.Model.Shop.ShopAnalysis">
<d2p1:PageData xmlns:d3p1="http://schemas.datacontract.org/2004/07/MS.Common">
<d3p1:PageIndex>2</d3p1:PageIndex>
<d3p1:PageSize>3</d3p1:PageSize>
<d3p1:Rows>
<d2p1:ShopSalesAnalysisReportRes>
<d2p1:ActiveProductTotal>14</d2p1:ActiveProductTotal>
<d2p1:AdvertisingFee>16</d2p1:AdvertisingFee>
<d2p1:Amount>8</d2p1:Amount>
<d2p1:CostPrice>15</d2p1:CostPrice>
<d2p1:Currency>sample string 4</d2p1:Currency>
<d2p1:CustomerTotal>9</d2p1:CustomerTotal>
<d2p1:LogisticsCost>19</d2p1:LogisticsCost>
<d2p1:OrderTotal>7</d2p1:OrderTotal>
<d2p1:PayMentAmount>10</d2p1:PayMentAmount>
<d2p1:PayMentCustomerTotal>13</d2p1:PayMentCustomerTotal>
<d2p1:PayMentSalesTotal>11</d2p1:PayMentSalesTotal>
<d2p1:PayMentTotal>12</d2p1:PayMentTotal>
<d2p1:PlatformFee>17</d2p1:PlatformFee>
<d2p1:PromotionFee>18</d2p1:PromotionFee>
<d2p1:RefundAmount>22</d2p1:RefundAmount>
<d2p1:RefundOrderTotal>20</d2p1:RefundOrderTotal>
<d2p1:RefundTotal>21</d2p1:RefundTotal>
<d2p1:ReportDate>5</d2p1:ReportDate>
<d2p1:SalesTotal>6</d2p1:SalesTotal>
<d2p1:ShopId>3</d2p1:ShopId>
<d2p1:PlatformType>sample string 1</d2p1:PlatformType>
<d2p1:ShopName>sample string 2</d2p1:ShopName>
</d2p1:ShopSalesAnalysisReportRes>
<d2p1:ShopSalesAnalysisReportRes>
<d2p1:ActiveProductTotal>14</d2p1:ActiveProductTotal>
<d2p1:AdvertisingFee>16</d2p1:AdvertisingFee>
<d2p1:Amount>8</d2p1:Amount>
<d2p1:CostPrice>15</d2p1:CostPrice>
<d2p1:Currency>sample string 4</d2p1:Currency>
<d2p1:CustomerTotal>9</d2p1:CustomerTotal>
<d2p1:LogisticsCost>19</d2p1:LogisticsCost>
<d2p1:OrderTotal>7</d2p1:OrderTotal>
<d2p1:PayMentAmount>10</d2p1:PayMentAmount>
<d2p1:PayMentCustomerTotal>13</d2p1:PayMentCustomerTotal>
<d2p1:PayMentSalesTotal>11</d2p1:PayMentSalesTotal>
<d2p1:PayMentTotal>12</d2p1:PayMentTotal>
<d2p1:PlatformFee>17</d2p1:PlatformFee>
<d2p1:PromotionFee>18</d2p1:PromotionFee>
<d2p1:RefundAmount>22</d2p1:RefundAmount>
<d2p1:RefundOrderTotal>20</d2p1:RefundOrderTotal>
<d2p1:RefundTotal>21</d2p1:RefundTotal>
<d2p1:ReportDate>5</d2p1:ReportDate>
<d2p1:SalesTotal>6</d2p1:SalesTotal>
<d2p1:ShopId>3</d2p1:ShopId>
<d2p1:PlatformType>sample string 1</d2p1:PlatformType>
<d2p1:ShopName>sample string 2</d2p1:ShopName>
</d2p1:ShopSalesAnalysisReportRes>
</d3p1:Rows>
<d3p1:Total>1</d3p1:Total>
</d2p1:PageData>
<d2p1:SummaryInfo>
<d2p1:Amount>2</d2p1:Amount>
<d2p1:CustomerTotal>3</d2p1:CustomerTotal>
<d2p1:OrderTotal>1</d2p1:OrderTotal>
<d2p1:PayMentAmount>4</d2p1:PayMentAmount>
<d2p1:PayMentCustomerTotal>6</d2p1:PayMentCustomerTotal>
<d2p1:RefundAmount>5</d2p1:RefundAmount>
</d2p1:SummaryInfo>
</Data>
<ErrorCode>sample string 2</ErrorCode>
<ErrorMessage>sample string 3</ErrorMessage>
<Status>true</Status>
</ResponseResultOfGetShopReportResAIo4_PnOe>