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": "a5ceee2d-feca-4832-aa86-48e994573cba",
"Name": "sample string 1",
"CompanyId": "4d40ad55-6e66-4d39-b974-4e1c0cf2fc31"
}
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": "90d29b65-8ca3-40a7-8c23-cd58eb36f0cf",
"Name": "sample string 1",
"CompanyId": "0b771a3d-05fc-43cd-b0bf-478410062a18"
},
"Total": 1,
"Message": "sample string 1"
}