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": "2dcfe403-9a95-474d-b6e5-5f42c7f4bbe3",
"Name": "sample string 1",
"CompanyId": "a2dae782-6bb1-401f-a68b-3baf8b49d6cb"
}
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": "1da555ad-784f-4c21-965e-08ca815188d4",
"Name": "sample string 1",
"CompanyId": "40e2a06f-ef87-44cc-94c2-6d159fe89a4d"
},
"Total": 1,
"Message": "sample string 1"
}