POST codetype/query

Request Information

URI Parameters

None.

Body Parameters

EntParaQuery
NameDescriptionTypeAdditional information
ParasItem

Dictionary of string [key] and Object [value]

None.

CodeType

string

None.

PageData

DataTable

None.

ColumnsMap

Dictionary of string [key] and string [value]

None.

PageSize

integer

None.

PageIndex

integer

None.

TotalCount

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "parasItem": {
    "sample string 1": {},
    "sample string 3": {}
  },
  "codeType": "sample string 1",
  "pageData": null,
  "columnsMap": {
    "sample string 1": "sample string 2",
    "sample string 3": "sample string 4"
  },
  "pageSize": 2,
  "pageIndex": 3,
  "totalCount": 4
}

application/xml, text/xml

Sample:
<EntParaQuery xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Epass.Model">
  <PageIndex>3</PageIndex>
  <PageSize>2</PageSize>
  <TotalCount>4</TotalCount>
  <CodeType>sample string 1</CodeType>
  <ColumnsMap xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
    <d2p1:KeyValueOfstringstring>
      <d2p1:Key>sample string 1</d2p1:Key>
      <d2p1:Value>sample string 2</d2p1:Value>
    </d2p1:KeyValueOfstringstring>
    <d2p1:KeyValueOfstringstring>
      <d2p1:Key>sample string 3</d2p1:Key>
      <d2p1:Value>sample string 4</d2p1:Value>
    </d2p1:KeyValueOfstringstring>
  </ColumnsMap>
  <PageData i:nil="true" />
  <ParasItem xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
    <d2p1:KeyValueOfstringanyType>
      <d2p1:Key>sample string 1</d2p1:Key>
      <d2p1:Value />
    </d2p1:KeyValueOfstringanyType>
    <d2p1:KeyValueOfstringanyType>
      <d2p1:Key>sample string 3</d2p1:Key>
      <d2p1:Value />
    </d2p1:KeyValueOfstringanyType>
  </ParasItem>
</EntParaQuery>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

ReturnResultOfEntParaQuery
NameDescriptionTypeAdditional information
Status

integer

None.

Success

boolean

None.

Data

EntParaQuery

None.

Message

string

None.

Response Formats

application/json, text/json

Sample:
{
  "status": 1,
  "success": true,
  "data": {
    "parasItem": {
      "sample string 1": {},
      "sample string 3": {}
    },
    "codeType": "sample string 1",
    "pageData": null,
    "columnsMap": {
      "sample string 1": "sample string 2",
      "sample string 3": "sample string 4"
    },
    "pageSize": 2,
    "pageIndex": 3,
    "totalCount": 4
  },
  "message": "sample string 3"
}

application/xml, text/xml

Sample:
<ReturnResultOfEntParaQueryJWrFJ9jl xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Epass.Model">
  <Data>
    <PageIndex>3</PageIndex>
    <PageSize>2</PageSize>
    <TotalCount>4</TotalCount>
    <CodeType>sample string 1</CodeType>
    <ColumnsMap xmlns:d3p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
      <d3p1:KeyValueOfstringstring>
        <d3p1:Key>sample string 1</d3p1:Key>
        <d3p1:Value>sample string 2</d3p1:Value>
      </d3p1:KeyValueOfstringstring>
      <d3p1:KeyValueOfstringstring>
        <d3p1:Key>sample string 3</d3p1:Key>
        <d3p1:Value>sample string 4</d3p1:Value>
      </d3p1:KeyValueOfstringstring>
    </ColumnsMap>
    <PageData i:nil="true" />
    <ParasItem xmlns:d3p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
      <d3p1:KeyValueOfstringanyType>
        <d3p1:Key>sample string 1</d3p1:Key>
        <d3p1:Value />
      </d3p1:KeyValueOfstringanyType>
      <d3p1:KeyValueOfstringanyType>
        <d3p1:Key>sample string 3</d3p1:Key>
        <d3p1:Value />
      </d3p1:KeyValueOfstringanyType>
    </ParasItem>
  </Data>
  <Message>sample string 3</Message>
  <Status>1</Status>
  <Success>true</Success>
</ReturnResultOfEntParaQueryJWrFJ9jl>