POST Api/PC/QC/QCExec

Request Information

URI Parameters

None.

Body Parameters

BaseRequestOfListOfGuid
NameDescriptionTypeAdditional information
QueryType

string

None.

OrgCold

string

None.

Data

Collection of globally unique identifier

None.

Request Formats

application/json, text/json

Sample:
{
  "QueryType": "sample string 1",
  "OrgCold": "sample string 2",
  "Data": [
    "29a0780c-8106-460c-b927-bc4ae3cbdf9e",
    "fc9cc9ee-fa2c-4310-9599-fb19241191fe"
  ]
}

application/xml, text/xml

Sample:
<BaseRequestOfArrayOfguiduHEDJ7Dj xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/GT.MobileAPI.Areas.Models">
  <Data xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
    <d2p1:guid>29a0780c-8106-460c-b927-bc4ae3cbdf9e</d2p1:guid>
    <d2p1:guid>fc9cc9ee-fa2c-4310-9599-fb19241191fe</d2p1:guid>
  </Data>
  <OrgCold>sample string 2</OrgCold>
  <QueryType>sample string 1</QueryType>
</BaseRequestOfArrayOfguiduHEDJ7Dj>

application/x-www-form-urlencoded

Sample:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'JQueryMvcFormUrlEncodedFormatter' to write type 'BaseRequest`1'.

Response Information

Resource Description

BaseResponse
NameDescriptionTypeAdditional information
ResponseCode

返回Code

integer

None.

ResponseMsg

返回信息

string

None.

ResponseData

返回数据Json字符串

string

None.

Response Formats

application/json, text/json

Sample:
{
  "ResponseCode": 1,
  "ResponseMsg": "sample string 2",
  "ResponseData": "sample string 3"
}

application/xml, text/xml

Sample:
<BaseResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/GT.MobileAPI.Areas.Models">
  <ResponseCode>1</ResponseCode>
  <ResponseData>sample string 3</ResponseData>
  <ResponseMsg>sample string 2</ResponseMsg>
</BaseResponse>