GET v1/flagType/detail/{flagTypeID}
Retrieve detailed information about a specific Flag Type by unique identifier
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| flagTypeID | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
FlagTypeModel| Name | Description | Type | Additional information |
|---|---|---|---|
| FlagTypeID |
Unique identifier of the Flag Type |
integer |
None. |
| FlagType |
Description of the Flag Type |
string |
None. |
| IsActive |
Indicates if Flag Type is active |
boolean |
None. |
| IsSystem |
Indicates if Flag Type is a system Flag Type |
boolean |
None. |
| IsCleared | boolean |
None. |
|
| IsDefault | boolean |
None. |
|
| IsRepair | boolean |
None. |
|
| IsAdmin | boolean |
None. |
|
| IsRepairComponent | boolean |
None. |
Response Formats
application/json, text/json
Sample:
{
"flagTypeID": 1,
"flagType": "sample string 2",
"isActive": true,
"isSystem": true,
"isCleared": true,
"isDefault": true,
"isRepair": true,
"isAdmin": true,
"isRepairComponent": true
}