GET api/EventFeeManagement/{id}
Get EventFeeManagement by matching the provided id
Request Information
URI Parameters
| Name | Description | Type | Additional information | 
|---|---|---|---|
| id | integer | Required | 
Body Parameters
None.
Response Information
Resource Description
ListEventFeeManagement| Name | Description | Type | Additional information | 
|---|---|---|---|
| EventFeeManagementId | integer | None. | |
| EventId | integer | None. | |
| QuotaProfileId | integer | None. | |
| ParticipationFee | decimal number | None. | |
| CancellationFee | decimal number | None. | |
| IsActive | boolean | None. | |
| IsDeleted | boolean | None. | 
Response Formats
application/json, text/json
            Sample:
        
{
  "EventFeeManagementId": 1,
  "EventId": 1,
  "QuotaProfileId": 1,
  "ParticipationFee": 1.0,
  "CancellationFee": 1.0,
  "IsActive": true,
  "IsDeleted": true
}
        application/xml, text/xml
            Sample:
<ListEventFeeManagement xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WebApplicationITTF1.Controllers"> <CancellationFee>1</CancellationFee> <EventFeeManagementId>1</EventFeeManagementId> <EventId>1</EventId> <IsActive>true</IsActive> <IsDeleted>true</IsDeleted> <ParticipationFee>1</ParticipationFee> <QuotaProfileId>1</QuotaProfileId> </ListEventFeeManagement>