POST api/Parameter/GetIncoTermList

Request Information

URI Parameters

None.

Body Parameters

GetIncoTermListMobileRequest

None.

Request Formats

application/json, text/json

Sample:
{}

application/xml, text/xml

Sample:
<GetIncoTermListMobileRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/EInvoice.Service.Model.Mobile" />

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 'GetIncoTermListMobileRequest'.

Response Information

Resource Description

GetIncoTermListMobileResponse
NameDescriptionTypeAdditional information
IncoTermList

Collection of IncoTermMobileModel

None.

Result

ResultType

None.

ErrorMessage

string

None.

Response Formats

application/json, text/json

Sample:
{
  "IncoTermList": [
    {
      "IncoTermId": 1.0,
      "IncoTermName": "sample string 2",
      "IncoTermCode": "sample string 3"
    },
    {
      "IncoTermId": 1.0,
      "IncoTermName": "sample string 2",
      "IncoTermCode": "sample string 3"
    }
  ],
  "Result": 0,
  "ErrorMessage": "sample string 1"
}

application/xml, text/xml

Sample:
<GetIncoTermListMobileResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/EInvoice.Service.Model.Mobile">
  <_x003C_ErrorMessage_x003E_k__BackingField>sample string 1</_x003C_ErrorMessage_x003E_k__BackingField>
  <_x003C_Result_x003E_k__BackingField>Success</_x003C_Result_x003E_k__BackingField>
  <IncoTermList>
    <IncoTermMobileModel>
      <IncoTermCode>sample string 3</IncoTermCode>
      <IncoTermId>1</IncoTermId>
      <IncoTermName>sample string 2</IncoTermName>
    </IncoTermMobileModel>
    <IncoTermMobileModel>
      <IncoTermCode>sample string 3</IncoTermCode>
      <IncoTermId>1</IncoTermId>
      <IncoTermName>sample string 2</IncoTermName>
    </IncoTermMobileModel>
  </IncoTermList>
</GetIncoTermListMobileResponse>