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": "711d2f12-b913-42a7-8d2f-f819cc087a1f",
"Name": "sample string 1",
"CompanyId": "b7acc580-24bc-4376-84b4-d04183652c96"
}
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": "f9e11406-b116-4d7d-ae28-3328cb5edf9a",
"Name": "sample string 1",
"CompanyId": "9d140a40-aacb-407b-bb67-2825dc955267"
},
"Total": 1,
"Message": "sample string 1"
}