POST StatReports/GetCustomerProjectStat

客户项目统计查询

Request Information

URI Parameters

None.

Body Parameters

CustomerManageCriteria
NameDescriptionTypeAdditional information
CompanyCodes

string

None.

ProjectType

string

None.

StartTime

date

None.

EndTime

date

None.

CustomerType

string

None.

CustomerLevels

string

None.

Customers

string

None.

CustomerManagers

string

None.

GroupType

string

None.

DataTypeCode

string

None.

IsActived

boolean

None.

PageSize

integer

None.

CurrentPage

integer

None.

CompanyCode

string

None.

Sort

Collection of SortCriteria

None.

Request Formats

application/json, text/json

Sample:
{
  "CompanyCodes": "sample string 1",
  "ProjectType": "sample string 2",
  "StartTime": "2026-06-02T20:31:15.3644291+08:00",
  "EndTime": "2026-06-02T20:31:15.3644291+08:00",
  "CustomerType": "sample string 3",
  "CustomerLevels": "sample string 4",
  "Customers": "sample string 5",
  "CustomerManagers": "sample string 6",
  "GroupType": "sample string 7",
  "DataTypeCode": "sample string 8",
  "IsActived": true,
  "PageSize": 1,
  "CurrentPage": 1,
  "CompanyCode": "sample string 9",
  "Sort": [
    {
      "SortOrder": 1,
      "SortField": "sample string 2",
      "Descending": true
    },
    {
      "SortOrder": 1,
      "SortField": "sample string 2",
      "Descending": true
    }
  ]
}

application/xml, text/xml

Sample:
<CustomerManageCriteria xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/GJ.WEM.Biz.Model.Criteria">
  <CompanyCode xmlns="http://schemas.datacontract.org/2004/07/GJ.Biz.Model">sample string 9</CompanyCode>
  <CurrentPage xmlns="http://schemas.datacontract.org/2004/07/GJ.Biz.Model">1</CurrentPage>
  <IsActived xmlns="http://schemas.datacontract.org/2004/07/GJ.Biz.Model">true</IsActived>
  <PageSize xmlns="http://schemas.datacontract.org/2004/07/GJ.Biz.Model">1</PageSize>
  <Sort xmlns="http://schemas.datacontract.org/2004/07/GJ.Biz.Model">
    <SortCriteria>
      <Descending>true</Descending>
      <SortField>sample string 2</SortField>
      <SortOrder>1</SortOrder>
    </SortCriteria>
    <SortCriteria>
      <Descending>true</Descending>
      <SortField>sample string 2</SortField>
      <SortOrder>1</SortOrder>
    </SortCriteria>
  </Sort>
  <CompanyCodes>sample string 1</CompanyCodes>
  <CustomerLevels>sample string 4</CustomerLevels>
  <CustomerManagers>sample string 6</CustomerManagers>
  <CustomerType>sample string 3</CustomerType>
  <Customers>sample string 5</Customers>
  <DataTypeCode>sample string 8</DataTypeCode>
  <EndTime>2026-06-02T20:31:15.3644291+08:00</EndTime>
  <GroupType>sample string 7</GroupType>
  <ProjectType>sample string 2</ProjectType>
  <StartTime>2026-06-02T20:31:15.3644291+08:00</StartTime>
</CustomerManageCriteria>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

RemoteResponseOfListOfCustomerProjectModel
NameDescriptionTypeAdditional information
success

boolean

None.

errors

string

None.

unauthed

boolean

None.

result

Collection of CustomerProjectModel

None.

Response Formats

application/json, text/json

Sample:
{
  "success": true,
  "errors": "sample string 2",
  "unauthed": true,
  "result": [
    {
      "ThisProjectCount": 1,
      "Level": 2,
      "UserId": "sample string 3",
      "CustomerManage": "sample string 4",
      "CustomerId": "sample string 5",
      "Customer": "sample string 6",
      "ProjectCount": 7.0
    },
    {
      "ThisProjectCount": 1,
      "Level": 2,
      "UserId": "sample string 3",
      "CustomerManage": "sample string 4",
      "CustomerId": "sample string 5",
      "Customer": "sample string 6",
      "ProjectCount": 7.0
    }
  ]
}

application/xml, text/xml

Sample:
<RemoteResponseOfArrayOfCustomerProjectModeldmGyRm56 xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/GJ.Biz.Model">
  <Errors>sample string 2</Errors>
  <Result xmlns:d2p1="http://schemas.datacontract.org/2004/07/GJ.WEM.Biz.Model">
    <d2p1:CustomerProjectModel>
      <d2p1:Customer>sample string 6</d2p1:Customer>
      <d2p1:CustomerId>sample string 5</d2p1:CustomerId>
      <d2p1:CustomerManage>sample string 4</d2p1:CustomerManage>
      <d2p1:Level>2</d2p1:Level>
      <d2p1:ProjectCount>7</d2p1:ProjectCount>
      <d2p1:ThisProjectCount>1</d2p1:ThisProjectCount>
      <d2p1:UserId>sample string 3</d2p1:UserId>
    </d2p1:CustomerProjectModel>
    <d2p1:CustomerProjectModel>
      <d2p1:Customer>sample string 6</d2p1:Customer>
      <d2p1:CustomerId>sample string 5</d2p1:CustomerId>
      <d2p1:CustomerManage>sample string 4</d2p1:CustomerManage>
      <d2p1:Level>2</d2p1:Level>
      <d2p1:ProjectCount>7</d2p1:ProjectCount>
      <d2p1:ThisProjectCount>1</d2p1:ThisProjectCount>
      <d2p1:UserId>sample string 3</d2p1:UserId>
    </d2p1:CustomerProjectModel>
  </Result>
  <Success>true</Success>
  <UnAuthorizedRequest>true</UnAuthorizedRequest>
</RemoteResponseOfArrayOfCustomerProjectModeldmGyRm56>