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": "47b70ca7-0028-4f52-94c4-970bfa265112",
"Name": "sample string 1",
"CompanyId": "9f58eadb-5e63-45d2-8157-d28c8c727010"
}
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": "fbac8e6a-70cc-4094-9ff2-f7cce977b4d6",
"Name": "sample string 1",
"CompanyId": "89e7edca-3ac8-45fb-b508-012c3ae5d02b"
},
"Total": 1,
"Message": "sample string 1"
}