GET api/GodownMasters

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of GodownMaster
NameDescriptionTypeAdditional information
GodownId

integer

None.

GodownName

string

None.

GodownAddress

string

None.

GodownManagerId

integer

None.

IsActive

boolean

None.

TalukaId

integer

None.

ContactNo

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "GodownId": 1,
    "GodownName": "sample string 2",
    "GodownAddress": "sample string 3",
    "GodownManagerId": 1,
    "IsActive": true,
    "TalukaId": 1,
    "ContactNo": "sample string 4"
  },
  {
    "GodownId": 1,
    "GodownName": "sample string 2",
    "GodownAddress": "sample string 3",
    "GodownManagerId": 1,
    "IsActive": true,
    "TalukaId": 1,
    "ContactNo": "sample string 4"
  }
]

application/xml, text/xml

Sample:
<ArrayOfGodownMaster xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/IPMSAPIV1.Models">
  <GodownMaster>
    <ContactNo>sample string 4</ContactNo>
    <GodownAddress>sample string 3</GodownAddress>
    <GodownId>1</GodownId>
    <GodownManagerId>1</GodownManagerId>
    <GodownName>sample string 2</GodownName>
    <IsActive>true</IsActive>
    <TalukaId>1</TalukaId>
  </GodownMaster>
  <GodownMaster>
    <ContactNo>sample string 4</ContactNo>
    <GodownAddress>sample string 3</GodownAddress>
    <GodownId>1</GodownId>
    <GodownManagerId>1</GodownManagerId>
    <GodownName>sample string 2</GodownName>
    <IsActive>true</IsActive>
    <TalukaId>1</TalukaId>
  </GodownMaster>
</ArrayOfGodownMaster>