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": "64b933ce-6ac2-49a2-a69d-67174acdc620",
"Name": "sample string 1",
"CompanyId": "88f0aaf6-561e-4ea4-9e5c-d3ab04f75eb2"
}
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": "815a3d3d-b4e9-4dec-a9b1-29180832390f",
"Name": "sample string 1",
"CompanyId": "8435f9ec-8622-40f0-88c0-b3d5a85813a2"
},
"Total": 1,
"Message": "sample string 1"
}