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": "c67d7d1d-01b7-48df-acdf-d37b654c8d6a",
"Name": "sample string 1",
"CompanyId": "2174f058-2369-4fc7-85ec-3375d62244fc"
}
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": "1ae78502-2dec-41a6-807f-c4c2025b20d7",
"Name": "sample string 1",
"CompanyId": "968eea3c-83ac-4486-b7f2-100672f438f1"
},
"Total": 1,
"Message": "sample string 1"
}