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": "b3857d4d-2e32-4650-a173-28b3d0c91961",
"Name": "sample string 1",
"CompanyId": "edffb87d-5dff-4b56-adf9-6f8c8f93d4c9"
}
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": "3efd49ac-5370-4185-a143-02cd24b82446",
"Name": "sample string 1",
"CompanyId": "f6322dbd-a36d-4a03-83c7-e439dba91bad"
},
"Total": 1,
"Message": "sample string 1"
}