POST api/EventFeeManagement/CRUD
Add/Update/Delete EventFeeManagement
Request Information
URI Parameters
None.
Body Parameters
String Array of EventFeeManagement Names And Information(Mandatory)
Collection of EventFeeManagementInfo| 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. | |
| Deleted | integer | None. | 
Request Formats
application/json, text/json
            Sample:
        
[
  {
    "EventFeeManagementId": 1,
    "EventId": 1,
    "QuotaProfileId": 1,
    "ParticipationFee": 1.0,
    "CancellationFee": 1.0,
    "IsActive": true,
    "IsDeleted": true,
    "Deleted": 1
  },
  {
    "EventFeeManagementId": 1,
    "EventId": 1,
    "QuotaProfileId": 1,
    "ParticipationFee": 1.0,
    "CancellationFee": 1.0,
    "IsActive": true,
    "IsDeleted": true,
    "Deleted": 1
  }
]
        application/xml, text/xml
            Sample:
        
<ArrayOfEventFeeManagementInfo xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/">
  <EventFeeManagementInfo>
    <CancellationFee>1</CancellationFee>
    <Deleted>1</Deleted>
    <EventFeeManagementId>1</EventFeeManagementId>
    <EventId>1</EventId>
    <IsActive>true</IsActive>
    <IsDeleted>true</IsDeleted>
    <ParticipationFee>1</ParticipationFee>
    <QuotaProfileId>1</QuotaProfileId>
  </EventFeeManagementInfo>
  <EventFeeManagementInfo>
    <CancellationFee>1</CancellationFee>
    <Deleted>1</Deleted>
    <EventFeeManagementId>1</EventFeeManagementId>
    <EventId>1</EventId>
    <IsActive>true</IsActive>
    <IsDeleted>true</IsDeleted>
    <ParticipationFee>1</ParticipationFee>
    <QuotaProfileId>1</QuotaProfileId>
  </EventFeeManagementInfo>
</ArrayOfEventFeeManagementInfo>
        application/x-www-form-urlencoded
            Sample:
    
Sample not available.
Response Information
Resource Description
integerResponse Formats
application/json, text/json
            Sample:
        1
application/xml, text/xml
            Sample:
<int xmlns="http://schemas.microsoft.com/2003/10/Serialization/">1</int>