GET api/v1/personcategories/{personCategoryId}
Gets the personCategory details.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| personCategoryId |
The personCategory identifier. |
globally unique identifier |
Required |
Body Parameters
None.
Response Information
Resource Description
PersonCategoryDetails| Name | Description | Type | Additional information |
|---|---|---|---|
| PersonCategoryId | globally unique identifier |
None. |
|
| CategoryName | string |
Required String length: inclusive between 0 and 100 |
|
| ParentPersonCategoryId | globally unique identifier |
None. |
|
| Remarks | string |
String length: inclusive between 0 and 250 |
|
| Id | globally unique identifier |
None. |
|
| CanUpdateRecord | boolean |
None. |
|
| CanDeleteRecord | boolean |
None. |
Response Formats
application/json, text/json
Sample:
{
"PersonCategoryId": "3a5e9588-27c2-4fb9-a593-b6d952e12e20",
"CategoryName": "sample string 2",
"ParentPersonCategoryId": "601c904f-912e-4f4a-864e-e4eb34818bb5",
"Remarks": "sample string 3",
"Id": "3a5e9588-27c2-4fb9-a593-b6d952e12e20",
"CanUpdateRecord": true,
"CanDeleteRecord": true
}
text/html
Sample:
{"PersonCategoryId":"3a5e9588-27c2-4fb9-a593-b6d952e12e20","CategoryName":"sample string 2","ParentPersonCategoryId":"601c904f-912e-4f4a-864e-e4eb34818bb5","Remarks":"sample string 3","Id":"3a5e9588-27c2-4fb9-a593-b6d952e12e20","CanUpdateRecord":true,"CanDeleteRecord":true}
application/xml, text/xml
Sample:
<PersonCategoryDetails xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/FLS.Data.WebApi.Club"> <CanDeleteRecord xmlns="http://schemas.datacontract.org/2004/07/FLS.Data.WebApi">true</CanDeleteRecord> <CanUpdateRecord xmlns="http://schemas.datacontract.org/2004/07/FLS.Data.WebApi">true</CanUpdateRecord> <Id xmlns="http://schemas.datacontract.org/2004/07/FLS.Data.WebApi">3a5e9588-27c2-4fb9-a593-b6d952e12e20</Id> <CategoryName>sample string 2</CategoryName> <ParentPersonCategoryId>601c904f-912e-4f4a-864e-e4eb34818bb5</ParentPersonCategoryId> <PersonCategoryId>3a5e9588-27c2-4fb9-a593-b6d952e12e20</PersonCategoryId> <Remarks>sample string 3</Remarks> </PersonCategoryDetails>