POST StatReports/GetCollaborativeCustomer

Request Information

URI Parameters

None.

Body Parameters

CollaborativeCustomerCriteria
NameDescriptionTypeAdditional information
GroupIDS

Collection of globally unique identifier

None.

CustomeTypes

Collection of integer

None.

StartTime

date

None.

EndTime

date

None.

CompanyCode

string

None.

CompanyName

string

None.

Depts

Collection of globally unique identifier

None.

GroupName

string

None.

GroupID

globally unique identifier

None.

Request Formats

application/json, text/json

Sample:
{
  "GroupIDS": [
    "a0b7b902-fc92-4b1b-a7f5-758bc726abc6",
    "9a44d547-a86f-4610-ba1b-87571f450aab"
  ],
  "CustomeTypes": [
    1,
    2
  ],
  "StartTime": "2026-06-02T20:31:36.9113472+08:00",
  "EndTime": "2026-06-02T20:31:36.9113472+08:00",
  "CompanyCode": "sample string 1",
  "CompanyName": "sample string 2",
  "Depts": [
    "682fe0bf-79d5-4625-bb2f-b8391a4c70af",
    "961e3e6d-720a-4294-8eed-05938434d63b"
  ],
  "GroupName": "sample string 3",
  "GroupID": "b8c810a7-e9d5-41dc-aa09-baa0eba30e62"
}

application/xml, text/xml

Sample:
<CollaborativeCustomerCriteria xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/GJ.WEM.Biz.Model.Criteria">
  <CompanyCode>sample string 1</CompanyCode>
  <CompanyName>sample string 2</CompanyName>
  <Depts xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
    <d2p1:guid>682fe0bf-79d5-4625-bb2f-b8391a4c70af</d2p1:guid>
    <d2p1:guid>961e3e6d-720a-4294-8eed-05938434d63b</d2p1:guid>
  </Depts>
  <GroupID>b8c810a7-e9d5-41dc-aa09-baa0eba30e62</GroupID>
  <GroupName>sample string 3</GroupName>
  <CustomeTypes xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
    <d2p1:int>1</d2p1:int>
    <d2p1:int>2</d2p1:int>
  </CustomeTypes>
  <EndTime>2026-06-02T20:31:36.9113472+08:00</EndTime>
  <GroupIDS xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
    <d2p1:guid>a0b7b902-fc92-4b1b-a7f5-758bc726abc6</d2p1:guid>
    <d2p1:guid>9a44d547-a86f-4610-ba1b-87571f450aab</d2p1:guid>
  </GroupIDS>
  <StartTime>2026-06-02T20:31:36.9113472+08:00</StartTime>
</CollaborativeCustomerCriteria>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

RemoteResponseOfCollaborativeCustomerModel
NameDescriptionTypeAdditional information
success

boolean

None.

errors

string

None.

unauthed

boolean

None.

result

CollaborativeCustomerModel

None.

Response Formats

application/json, text/json

Sample:
{
  "success": true,
  "errors": "sample string 2",
  "unauthed": true,
  "result": {
    "GroupID": "5b92b9fc-6e04-4c85-a7f1-b5109ba24de1",
    "GroupName": "sample string 2",
    "Count": 3
  }
}

application/xml, text/xml

Sample:
<RemoteResponseOfCollaborativeCustomerModeldmGyRm56 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:Count>3</d2p1:Count>
    <d2p1:GroupID>5b92b9fc-6e04-4c85-a7f1-b5109ba24de1</d2p1:GroupID>
    <d2p1:GroupName>sample string 2</d2p1:GroupName>
  </Result>
  <Success>true</Success>
  <UnAuthorizedRequest>true</UnAuthorizedRequest>
</RemoteResponseOfCollaborativeCustomerModeldmGyRm56>