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": "6b748c3d-4def-47cb-a293-bdb4a5b816da",
"Name": "sample string 1",
"CompanyId": "c5a80d56-df93-4e49-94da-829b03e490c3"
}
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": "628ac744-4c3b-4e1c-a0ab-36d8be6be4ba",
"Name": "sample string 1",
"CompanyId": "60c394ae-635d-48d4-9187-93b7ed8dcaf3"
},
"Total": 1,
"Message": "sample string 1"
}