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": "078839d5-7605-4f97-b2df-e4f997a1abef",
"Name": "sample string 1",
"CompanyId": "75a7be35-935c-4ea1-a0c4-a5f02e091174"
}
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": "59dc6b5e-28ea-4228-bec8-282a7469ff87",
"Name": "sample string 1",
"CompanyId": "8646336e-6c56-4dbb-9523-21e47a4b0905"
},
"Total": 1,
"Message": "sample string 1"
}