POST FeePlansAPI/AddFeePlan
Request Information
URI Parameters
None.
Body Parameters
FeePlans| Name | Description | Type | Additional information |
|---|---|---|---|
| FeePlanID | integer |
None. |
|
| Active | boolean |
None. |
|
| ApplicationFeeAcademic | decimal number |
None. |
|
| ApplicationFeeMusicForAll | decimal number |
None. |
|
| ApplicationFeeMusicAppreciation | decimal number |
None. |
|
| ResourceFee | decimal number |
None. |
|
| DatePlanCreated | date |
None. |
|
| DatePlanCreatedStr | string |
None. |
|
| Notes | string |
None. |
|
| PlanName | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"FeePlanID": 1,
"Active": true,
"ApplicationFeeAcademic": 3.0,
"ApplicationFeeMusicForAll": 4.0,
"ApplicationFeeMusicAppreciation": 5.0,
"ResourceFee": 6.0,
"DatePlanCreated": "2025-12-14T08:09:03.2445347+00:00",
"DatePlanCreatedStr": "sample string 8",
"Notes": "sample string 9",
"PlanName": "sample string 10"
}
application/xml, text/xml
Sample:
<FeePlans xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/QMA2020.Models"> <Active>true</Active> <ApplicationFeeAcademic>3</ApplicationFeeAcademic> <ApplicationFeeMusicAppreciation>5</ApplicationFeeMusicAppreciation> <ApplicationFeeMusicForAll>4</ApplicationFeeMusicForAll> <DatePlanCreated>2025-12-14T08:09:03.2445347+00:00</DatePlanCreated> <DatePlanCreatedStr>sample string 8</DatePlanCreatedStr> <FeePlanID>1</FeePlanID> <Notes>sample string 9</Notes> <PlanName>sample string 10</PlanName> <ResourceFee>6</ResourceFee> </FeePlans>
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>