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": "491671ae-6a5b-4792-86fe-02a28faf8725",
"Name": "sample string 1",
"CompanyId": "851f605d-35e0-497e-b78d-7f0de45bf324"
}
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": "4c52fffc-024b-4e96-b9b9-6404fe55177c",
"Name": "sample string 1",
"CompanyId": "b07328ae-42a6-44bd-a57f-53c48ea3441a"
},
"Total": 1,
"Message": "sample string 1"
}