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": "02364223-36e2-4a49-a51d-41b692e99b04",
"Name": "sample string 1",
"CompanyId": "1e3a13f2-2a4b-4c0a-bf94-a068dc6a9310"
}
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": "6f529b53-c656-40ea-a53a-ae54ecbb4b3b",
"Name": "sample string 1",
"CompanyId": "bb1bfef1-e0b1-42a4-a715-3d832778d278"
},
"Total": 1,
"Message": "sample string 1"
}