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": "68085e5c-488b-4d99-99dd-6d4fb64cdbe4",
"Name": "sample string 1",
"CompanyId": "8427769c-da85-4253-9389-b15111fe2535"
}
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": "0b7923b9-e4a4-4f15-8c90-d37d8a8d301e",
"Name": "sample string 1",
"CompanyId": "de571c3f-a825-494a-b61b-09c357f0e9e0"
},
"Total": 1,
"Message": "sample string 1"
}