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": "a84707b8-affc-49c7-9fee-7c1e45194aab",
"Name": "sample string 1",
"CompanyId": "00feecd0-c8ab-4ebf-be6e-dfe2893d1c5d"
}
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": "27442731-f4e6-4755-a384-a482477bc3f3",
"Name": "sample string 1",
"CompanyId": "a32189ad-e978-4b1c-af49-6f869c8a5df2"
},
"Total": 1,
"Message": "sample string 1"
}