GET api/Gas/GetGasPutInCustList?FSectionID={FSectionID}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
FSectionID

integer

Required

Body Parameters

None.

Response Information

Resource Description

MessageModelOfListOfGasCustSelectViewModel
NameDescriptionTypeAdditional information
Status

integer

None.

Success

boolean

None.

Msg

string

None.

Response

Collection of GasCustSelectViewModel

None.

Response Formats

application/json, text/json

Sample:
{
  "Status": 200,
  "Success": true,
  "Msg": "sample string 3",
  "Response": [
    {
      "FCustNO": "sample string 1",
      "FCustName": "sample string 2",
      "FCustType": 1
    },
    {
      "FCustNO": "sample string 1",
      "FCustName": "sample string 2",
      "FCustType": 1
    }
  ]
}

application/xml, text/xml

Sample:
<MessageModelOfArrayOfGasCustSelectViewModelKI6_SDWR9 xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DY.Entity">
  <Msg>sample string 3</Msg>
  <Response xmlns:d2p1="http://schemas.datacontract.org/2004/07/DY.Entity.ViewModel">
    <d2p1:GasCustSelectViewModel>
      <d2p1:FCustNO>sample string 1</d2p1:FCustNO>
      <d2p1:FCustName>sample string 2</d2p1:FCustName>
      <d2p1:FCustType>1</d2p1:FCustType>
    </d2p1:GasCustSelectViewModel>
    <d2p1:GasCustSelectViewModel>
      <d2p1:FCustNO>sample string 1</d2p1:FCustNO>
      <d2p1:FCustName>sample string 2</d2p1:FCustName>
      <d2p1:FCustType>1</d2p1:FCustType>
    </d2p1:GasCustSelectViewModel>
  </Response>
  <Status>200</Status>
  <Success>true</Success>
</MessageModelOfArrayOfGasCustSelectViewModelKI6_SDWR9>