GET api/Letter

Request Information

URI Parameters

None.

Body Parameters

Collection of ICriterion

None.

Request Formats

application/json, text/json, application/xml, text/xml, application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

Collection of Letter
NameDescriptionTypeAdditional information
Producttemplateid

integer

None.

Districtid

integer

None.

Template

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "Producttemplateid": 1,
    "Districtid": 2,
    "Template": "sample string 3"
  },
  {
    "Producttemplateid": 1,
    "Districtid": 2,
    "Template": "sample string 3"
  }
]

application/xml, text/xml

Sample:
<ArrayOfLetter xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/LAP.BaseObject">
  <Letter>
    <Districtid>2</Districtid>
    <Producttemplateid>1</Producttemplateid>
    <Template>sample string 3</Template>
  </Letter>
  <Letter>
    <Districtid>2</Districtid>
    <Producttemplateid>1</Producttemplateid>
    <Template>sample string 3</Template>
  </Letter>
</ArrayOfLetter>