GET api/QuotaProfile/Details/{id}
Get QuotaProfile Details by provided ID
Request Information
URI Parameters
| Name | Description | Type | Additional information | 
|---|---|---|---|
| id | integer | Required | 
Body Parameters
None.
Response Information
Resource Description
list_quota_profiles_dc| Name | Description | Type | Additional information | 
|---|---|---|---|
| QuotaProfileId | integer | None. | |
| ProfileType1 | string | None. | |
| IsOfficial | boolean | None. | |
| IsActive | boolean | None. | |
| IsParentChildProfileType | boolean | None. | |
| ProfileTypeId | integer | None. | |
| AccreditationCode | string | None. | 
Response Formats
application/json, text/json
            Sample:
        
{
  "QuotaProfileId": 1,
  "ProfileType1": "sample string 2",
  "IsOfficial": true,
  "IsActive": true,
  "IsParentChildProfileType": true,
  "ProfileTypeId": 5,
  "AccreditationCode": "sample string 6"
}
        application/xml, text/xml
            Sample:
<list_quota_profiles_dc xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WebApplicationITTF1.Controllers"> <AccreditationCode>sample string 6</AccreditationCode> <IsActive>true</IsActive> <IsOfficial>true</IsOfficial> <IsParentChildProfileType>true</IsParentChildProfileType> <ProfileType1>sample string 2</ProfileType1> <ProfileTypeId>5</ProfileTypeId> <QuotaProfileId>1</QuotaProfileId> </list_quota_profiles_dc>