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": "74e695dc-294b-4c43-9836-efd6e04bda45",
"Name": "sample string 1",
"CompanyId": "5c4959f9-cfe6-4a81-867b-7c983438761b"
}
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": "bc90dfcb-abd4-4f89-b0c0-11201cfd1537",
"Name": "sample string 1",
"CompanyId": "930c1ad3-f22a-4156-bc50-ddb1bbfd64af"
},
"Total": 1,
"Message": "sample string 1"
}