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": "bb357d5a-f92e-4ba4-a78c-29688fca7896",
"Name": "sample string 1",
"CompanyId": "fd2076e4-38fa-481b-8d07-043d315789e4"
}
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": "a8baf5a6-5f75-4330-a465-67996f59220d",
"Name": "sample string 1",
"CompanyId": "eef1bc69-b5fa-41c9-a40c-ccc45d5529af"
},
"Total": 1,
"Message": "sample string 1"
}