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": "3ef963f3-adc5-4cf1-bce1-cdb13f880b50",
"Name": "sample string 1",
"CompanyId": "5ce48553-e84a-43e0-a418-83bcfa1181b5"
}
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": "4a225a79-1a62-4a38-9ca2-60584869509d",
"Name": "sample string 1",
"CompanyId": "541e3023-1f52-472a-a888-30c0e96ccdec"
},
"Total": 1,
"Message": "sample string 1"
}