PUT TaskStatusTypes
Updates a task status type by its Id.
Request Information
URI Parameters
None.
Body Parameters
TaskStatusType that will be updated with given info.
TaskStatusType| Name | Description | Type | Additional information |
|---|---|---|---|
| TaskStatusTypeId | globally unique identifier |
None. |
|
| Name | string |
None. |
|
| CompanyId | globally unique identifier |
None. |
Request Formats
application/json, text/json
Sample:
{
"TaskStatusTypeId": "d2d302f5-1cc5-4fc5-b9e2-618ed5dc5efd",
"Name": "sample string 1",
"CompanyId": "512f5615-3681-4883-82ff-79bfc32a8be3"
}
Response Information
Resource Description
On success, the updated task status type.
| Name | Description | Type | Additional information |
|---|---|---|---|
| Data | TaskStatusType |
None. |
|
| Total | integer |
None. |
|
| Message | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"Data": {
"TaskStatusTypeId": "e235ec44-5a57-4ea7-9db3-3c0940ca7068",
"Name": "sample string 1",
"CompanyId": "e4f119bc-d465-4cff-ae58-912b94f53a40"
},
"Total": 1,
"Message": "sample string 1"
}