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": "5dfb10d1-1daa-4c90-abd8-8ed660dd225b",
"Name": "sample string 1",
"CompanyId": "2194d7a5-6982-454d-80d9-51b785d84ee6"
}
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": "87d3d62a-24cc-4d9d-acf5-316a59054315",
"Name": "sample string 1",
"CompanyId": "b2915cd7-8e0a-4fae-8855-37517dba2797"
},
"Total": 1,
"Message": "sample string 1"
}