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": "522e93d2-79bd-461a-9827-5b305babab10",
"Name": "sample string 1",
"CompanyId": "d641a391-18b5-4fd4-b29f-dd701ff3f679"
}
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": "380ec7dd-7c67-40ec-bdd4-f2be79d39c97",
"Name": "sample string 1",
"CompanyId": "5a5c2875-19ab-4476-a722-71c956111f47"
},
"Total": 1,
"Message": "sample string 1"
}