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": "044df31e-73c8-4ca4-9585-ece6e63e2d54",
"Name": "sample string 1",
"CompanyId": "48fea8a9-1c64-41a2-8839-05ed8fcd73dd"
}
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": "032e5c22-6b7c-4002-bf63-969f61cc1101",
"Name": "sample string 1",
"CompanyId": "a22647a9-ef82-452f-837a-2c0e46b6efaa"
},
"Total": 1,
"Message": "sample string 1"
}