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": "ffedfb30-f07a-4057-99ad-8536b654a301",
"Name": "sample string 1",
"CompanyId": "47443f27-21a5-4b35-8777-6f339719f2e0"
}
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": "9056193b-f4e8-4f79-9fd5-73d234b08e36",
"Name": "sample string 1",
"CompanyId": "d51342c0-7a90-4de3-9cf7-e9c8ff6fd453"
},
"Total": 1,
"Message": "sample string 1"
}