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": "aedce8ad-fcfb-44b3-ab01-19fa4b50366f",
"Name": "sample string 1",
"CompanyId": "4819f13a-a645-4a89-bffd-de6a153b53ea"
}
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": "e52c5a3c-08c5-4b20-aa75-59fff032a4fb",
"Name": "sample string 1",
"CompanyId": "434e15cf-c30b-47fb-af8a-7c8eab6fd7c9"
},
"Total": 1,
"Message": "sample string 1"
}