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": "2268ebd9-1830-425b-968e-c827367b5b89",
"Name": "sample string 1",
"CompanyId": "034d6da4-e0b5-4e8a-86bd-b5517984a670"
}
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": "3ffbf432-a4cf-4200-b9e0-96e7b9034ea4",
"Name": "sample string 1",
"CompanyId": "cab4d168-8a03-483e-bd69-11454106c459"
},
"Total": 1,
"Message": "sample string 1"
}