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": "fd42a6fb-d194-42ca-931b-31030ba046eb",
"Name": "sample string 1",
"CompanyId": "1f4024ab-01dd-4b37-90ec-7adef2029957"
}
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": "0cb7fec5-abcd-4ba6-b34a-110995dd0021",
"Name": "sample string 1",
"CompanyId": "7feef579-0c07-469e-b8be-1632d87028c1"
},
"Total": 1,
"Message": "sample string 1"
}