GET api/LetterTemplate/{id}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Lettertemplate| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
None. |
|
| Languageid | integer |
None. |
|
| Description | string |
None. |
|
| Template | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"Id": 1,
"Languageid": 2,
"Description": "sample string 3",
"Template": "sample string 4"
}
application/xml, text/xml
Sample:
<Lettertemplate xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/LAP.BaseObject"> <Description>sample string 3</Description> <Id>1</Id> <Languageid>2</Languageid> <Template>sample string 4</Template> </Lettertemplate>