GET Api/Yuer/GetYuer?custid={custid}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
custid

integer

Required

Body Parameters

None.

Response Information

Resource Description

RtnObj
NameDescriptionTypeAdditional information
rows

integer

None.

totalup

string

None.

totaltitle

string

None.

objList

Collection of FE_YUER

None.

Response Formats

application/json, text/json

Sample:
{
  "rows": 1,
  "totalup": "sample string 2",
  "totaltitle": "sample string 3",
  "objList": [
    {
      "custid": 1,
      "custname": "sample string 2",
      "amt": 3.0,
      "amts": "sample string 4"
    },
    {
      "custid": 1,
      "custname": "sample string 2",
      "amt": 3.0,
      "amts": "sample string 4"
    }
  ]
}

application/xml, text/xml

Sample:
<RtnObj xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WebApiSer.Controllers">
  <objList xmlns:d2p1="http://schemas.datacontract.org/2004/07/MDST">
    <d2p1:FE_YUER>
      <d2p1:amt>3</d2p1:amt>
      <d2p1:amts>sample string 4</d2p1:amts>
      <d2p1:custid>1</d2p1:custid>
      <d2p1:custname>sample string 2</d2p1:custname>
    </d2p1:FE_YUER>
    <d2p1:FE_YUER>
      <d2p1:amt>3</d2p1:amt>
      <d2p1:amts>sample string 4</d2p1:amts>
      <d2p1:custid>1</d2p1:custid>
      <d2p1:custname>sample string 2</d2p1:custname>
    </d2p1:FE_YUER>
  </objList>
  <rows>1</rows>
  <totaltitle>sample string 3</totaltitle>
  <totalup>sample string 2</totalup>
</RtnObj>