POST WEvalDeclaration/GetCustomerList

Request Information

URI Parameters

None.

Body Parameters

BaseSelectDataRequest
NameDescriptionTypeAdditional information
Type

string

None.

Name

string

None.

Request Formats

application/json, text/json

Sample:
{
  "Type": "sample string 1",
  "Name": "sample string 2"
}

application/xml, text/xml

Sample:
<BaseSelectDataRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/GJ.WEM.Biz.Model">
  <Name>sample string 2</Name>
  <Type>sample string 1</Type>
</BaseSelectDataRequest>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

RemoteResponseOfListOfBaseSelectDataResponse
NameDescriptionTypeAdditional information
success

boolean

None.

errors

string

None.

unauthed

boolean

None.

result

Collection of BaseSelectDataResponse

None.

Response Formats

application/json, text/json

Sample:
{
  "success": true,
  "errors": "sample string 2",
  "unauthed": true,
  "result": [
    {
      "Id": "sample string 1",
      "Name": "sample string 2"
    },
    {
      "Id": "sample string 1",
      "Name": "sample string 2"
    }
  ]
}

application/xml, text/xml

Sample:
<RemoteResponseOfArrayOfBaseSelectDataResponsedmGyRm56 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:BaseSelectDataResponse>
      <d2p1:Id>sample string 1</d2p1:Id>
      <d2p1:Name>sample string 2</d2p1:Name>
    </d2p1:BaseSelectDataResponse>
    <d2p1:BaseSelectDataResponse>
      <d2p1:Id>sample string 1</d2p1:Id>
      <d2p1:Name>sample string 2</d2p1:Name>
    </d2p1:BaseSelectDataResponse>
  </Result>
  <Success>true</Success>
  <UnAuthorizedRequest>true</UnAuthorizedRequest>
</RemoteResponseOfArrayOfBaseSelectDataResponsedmGyRm56>