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": "89f2faca-976e-4a86-a90f-267a65eff96c",
"Name": "sample string 1",
"CompanyId": "592709b5-e4d0-4150-b5de-563d4333b3a9"
}
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": "6fec770d-5e1d-43e1-95a5-bded9d5533ed",
"Name": "sample string 1",
"CompanyId": "a75d0570-5167-4e2a-9c1d-0832cfe5735d"
},
"Total": 1,
"Message": "sample string 1"
}