GET api/WebPortal/getAllRecords/CourseCategory/Branch/{Key}/{CategoryId}
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
Key | string |
Required |
|
CategoryId | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
WebGradeCategoryDataDtoName | Description | Type | Additional information |
---|---|---|---|
GradeCategoryDetails | Collection of WebGradeCategoryDto |
None. |
|
GradeCategoryParentDetails | WebGradeCategoryParentDto |
None. |
Response Formats
application/json, text/json
Sample:
{ "GradeCategoryDetails": [ { "GradeCategoryId": 1.0, "GradeCategoryName": "sample string 2", "GradeCount": 1, "GradeCategoryFilePath": "sample string 3", "ParentId": 1.0, "TotalRecords": 1.0 }, { "GradeCategoryId": 1.0, "GradeCategoryName": "sample string 2", "GradeCount": 1, "GradeCategoryFilePath": "sample string 3", "ParentId": 1.0, "TotalRecords": 1.0 } ], "GradeCategoryParentDetails": { "GradeCategoryId": 1.0, "GradeCategoryName": "sample string 2" } }
application/xml, text/xml
Sample:
<WebGradeCategoryDataDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ZenoxERP.API.Models.Extensions"> <GradeCategoryDetails> <WebGradeCategoryDto> <GradeCategoryFilePath>sample string 3</GradeCategoryFilePath> <GradeCategoryId>1</GradeCategoryId> <GradeCategoryName>sample string 2</GradeCategoryName> <GradeCount>1</GradeCount> <ParentId>1</ParentId> <TotalRecords>1</TotalRecords> </WebGradeCategoryDto> <WebGradeCategoryDto> <GradeCategoryFilePath>sample string 3</GradeCategoryFilePath> <GradeCategoryId>1</GradeCategoryId> <GradeCategoryName>sample string 2</GradeCategoryName> <GradeCount>1</GradeCount> <ParentId>1</ParentId> <TotalRecords>1</TotalRecords> </WebGradeCategoryDto> </GradeCategoryDetails> <GradeCategoryParentDetails> <GradeCategoryId>1</GradeCategoryId> <GradeCategoryName>sample string 2</GradeCategoryName> </GradeCategoryParentDetails> </WebGradeCategoryDataDto>