GET api/Master/GetFontById?FontId={FontId}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| FontId | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
FontMasterDc| Name | Description | Type | Additional information |
|---|---|---|---|
| FontId | integer |
None. |
|
| FontStyle | string |
None. |
|
| FontLink | string |
None. |
|
| FontClass | string |
None. |
|
| IsActive | boolean |
None. |
Response Formats
application/json, text/json
Sample:
{
"FontId": 1,
"FontStyle": "sample string 2",
"FontLink": "sample string 3",
"FontClass": "sample string 4",
"IsActive": true
}
text/html
Sample:
{"FontId":1,"FontStyle":"sample string 2","FontLink":"sample string 3","FontClass":"sample string 4","IsActive":true}
application/xml, text/xml
Sample:
<FontMasterDc xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BillGeneration.DataContract"> <FontClass>sample string 4</FontClass> <FontId>1</FontId> <FontLink>sample string 3</FontLink> <FontStyle>sample string 2</FontStyle> <IsActive>true</IsActive> </FontMasterDc>