POST api/UserType/Update
Request Information
URI Parameters
None.
Body Parameters
UserTypeModel| Name | Description | Type | Additional information |
|---|---|---|---|
| name | string |
None. |
|
| id | integer |
None. |
|
| text | string |
None. |
|
| is_active | boolean |
None. |
|
| created_by | integer |
None. |
|
| created_date | date |
None. |
|
| updated_by | integer |
None. |
|
| updated_date | date |
None. |
|
| TotalRows | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"name": "sample string 1",
"id": 2,
"text": "sample string 3",
"is_active": true,
"created_by": 5,
"created_date": "2025-12-18T16:07:41.1419949+05:00",
"updated_by": 7,
"updated_date": "2025-12-18T16:07:41.1419949+05:00",
"TotalRows": 9
}
application/xml, text/xml
Sample:
<UserTypeModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SpoonRocket.Models"> <TotalRows>9</TotalRows> <created_by>5</created_by> <created_date>2025-12-18T16:07:41.1419949+05:00</created_date> <id>2</id> <is_active>true</is_active> <text>sample string 3</text> <updated_by>7</updated_by> <updated_date>2025-12-18T16:07:41.1419949+05:00</updated_date> <name>sample string 1</name> </UserTypeModel>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.