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": "e8e78edc-c39f-4679-8f89-e5d4b6cb158a",
"Name": "sample string 1",
"CompanyId": "157124ce-da6c-4316-9226-545fe664eeb7"
}
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": "936a4293-3276-4ffb-b97a-2ac4799434d3",
"Name": "sample string 1",
"CompanyId": "fbee93cd-a3da-4c74-b8a7-8389630efe29"
},
"Total": 1,
"Message": "sample string 1"
}