GET api/admin/master/GetGradeRateForEditByID?RateID={RateID}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| RateID | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
utblGradeRate| Name | Description | Type | Additional information |
|---|---|---|---|
| RateID | integer |
None. |
|
| CategoryID | integer |
None. |
|
| GradeID | integer |
None. |
|
| IsNewFees | boolean |
None. |
|
| IsRenewalFees | boolean |
None. |
|
| RateFee | decimal number |
None. |
|
| RateEffectiveFrom | date |
None. |
|
| RateEffectiveUpto | date |
None. |
|
| UserID | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"RateID": 1,
"CategoryID": 2,
"GradeID": 3,
"IsNewFees": true,
"IsRenewalFees": true,
"RateFee": 6.0,
"RateEffectiveFrom": "2026-04-25T23:03:12.8844329+05:30",
"RateEffectiveUpto": "2026-04-25T23:03:12.8844329+05:30",
"UserID": "sample string 9"
}
application/xml, text/xml
Sample:
<utblGradeRate xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Tourism.Entities.Models"> <CategoryID>2</CategoryID> <GradeID>3</GradeID> <IsNewFees>true</IsNewFees> <IsRenewalFees>true</IsRenewalFees> <RateEffectiveFrom>2026-04-25T23:03:12.8844329+05:30</RateEffectiveFrom> <RateEffectiveUpto>2026-04-25T23:03:12.8844329+05:30</RateEffectiveUpto> <RateFee>6</RateFee> <RateID>1</RateID> <UserID>sample string 9</UserID> </utblGradeRate>