GET api/LagosCollections/GetBillType

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

BillTypedata
NameDescriptionTypeAdditional information
Responsecode

string

None.

ResponseDescription

string

None.

BillTypeListData

Collection of LagCollectBillType

None.

Response Formats

application/json, text/json

Sample:
{
  "Responsecode": "sample string 1",
  "ResponseDescription": "sample string 2",
  "BillTypeListData": [
    {
      "value": "sample string 1",
      "text": "sample string 2"
    },
    {
      "value": "sample string 1",
      "text": "sample string 2"
    }
  ]
}

application/xml, text/xml

Sample:
<BillTypedata xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CorporateAPI.ResponseObjs">
  <BillTypeListData>
    <LagCollectBillType>
      <text>sample string 2</text>
      <value>sample string 1</value>
    </LagCollectBillType>
    <LagCollectBillType>
      <text>sample string 2</text>
      <value>sample string 1</value>
    </LagCollectBillType>
  </BillTypeListData>
  <ResponseDescription>sample string 2</ResponseDescription>
  <Responsecode>sample string 1</Responsecode>
</BillTypedata>