POST api/QuotaProfile/CRUD
Add/Update/Delete QuotaProfile
Request Information
URI Parameters
None.
Body Parameters
String Array of SubEventType And Information(Mandatory)
Collection of QuotaProfilesInfo| Name | Description | Type | Additional information | 
|---|---|---|---|
| QuotaProfileId | integer | None. | |
| ProfileTypeId | integer | None. | |
| IsOfficial | boolean | None. | |
| IsActive | boolean | None. | |
| IsDeleted | boolean | None. | 
Request Formats
application/json, text/json
            Sample:
        
[
  {
    "QuotaProfileId": 1,
    "ProfileTypeId": 2,
    "IsOfficial": true,
    "IsActive": true,
    "IsDeleted": true
  },
  {
    "QuotaProfileId": 1,
    "ProfileTypeId": 2,
    "IsOfficial": true,
    "IsActive": true,
    "IsDeleted": true
  }
]
        application/xml, text/xml
            Sample:
        
<ArrayOfQuotaProfilesInfo xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ClassLibraryITTF1">
  <QuotaProfilesInfo>
    <IsActive>true</IsActive>
    <IsDeleted>true</IsDeleted>
    <IsOfficial>true</IsOfficial>
    <ProfileTypeId>2</ProfileTypeId>
    <QuotaProfileId>1</QuotaProfileId>
  </QuotaProfilesInfo>
  <QuotaProfilesInfo>
    <IsActive>true</IsActive>
    <IsDeleted>true</IsDeleted>
    <IsOfficial>true</IsOfficial>
    <ProfileTypeId>2</ProfileTypeId>
    <QuotaProfileId>1</QuotaProfileId>
  </QuotaProfilesInfo>
</ArrayOfQuotaProfilesInfo>
        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>