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": "2719dbd6-bd4b-453e-b452-40fe48c9fa4a",
"Name": "sample string 1",
"CompanyId": "857f1063-075e-46c0-834f-c389f3658af9"
}
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": "2781d878-5a84-454c-9def-11446bdc20a7",
"Name": "sample string 1",
"CompanyId": "c4373b5c-4936-4751-bf49-911d6df200eb"
},
"Total": 1,
"Message": "sample string 1"
}