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": "64d0b8eb-f76e-4a5c-a341-f05a66d14196",
"Name": "sample string 1",
"CompanyId": "9a0eb6c7-b792-4d8a-94e1-293d99c138fd"
}
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": "964e7a45-ff0c-4232-92a9-9dc084c7c490",
"Name": "sample string 1",
"CompanyId": "0133eba3-f3a2-46d6-9791-7b45a8094a18"
},
"Total": 1,
"Message": "sample string 1"
}