PUT api/investigatonsubcategory
Request Information
URI Parameters
None.
Body Parameters
InvestigationSubCategoryViewModel| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
None. |
|
| InvestigationCategoryId | integer |
None. |
|
| Name | string |
Required String length: inclusive between 0 and 100 |
|
| Description | string |
String length: inclusive between 0 and 200 |
|
| IsActive | boolean |
None. |
|
| InvestigationCategoryName | string |
None. |
|
| CreatedDate | date |
None. |
|
| CreatedBy | integer |
None. |
|
| ModifiedDate | date |
None. |
|
| ModifiedBy | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"Id": 1,
"InvestigationCategoryId": 2,
"Name": "sample string 3",
"Description": "sample string 4",
"IsActive": true,
"InvestigationCategoryName": "sample string 6",
"CreatedDate": "2025-12-10T10:43:39.5769032-08:00",
"CreatedBy": 8,
"ModifiedDate": "2025-12-10T10:43:39.5769032-08:00",
"ModifiedBy": 1
}
application/xml, text/xml
Sample:
<InvestigationSubCategoryViewModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/PMS.ViewModel"> <CreatedBy>8</CreatedBy> <CreatedDate>2025-12-10T10:43:39.5769032-08:00</CreatedDate> <ModifiedBy>1</ModifiedBy> <ModifiedDate>2025-12-10T10:43:39.5769032-08:00</ModifiedDate> <Description>sample string 4</Description> <Id>1</Id> <InvestigationCategoryId>2</InvestigationCategoryId> <InvestigationCategoryName>sample string 6</InvestigationCategoryName> <IsActive>true</IsActive> <Name>sample string 3</Name> </InvestigationSubCategoryViewModel>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
HttpResponseMessage| Name | Description | Type | Additional information |
|---|---|---|---|
| Version | Version |
None. |
|
| Content | HttpContent |
None. |
|
| StatusCode | HttpStatusCode |
None. |
|
| ReasonPhrase | string |
None. |
|
| Headers | Collection of Object |
None. |
|
| RequestMessage | HttpRequestMessage |
None. |
|
| IsSuccessStatusCode | boolean |
None. |