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": "4462ad54-9580-4135-8afc-a49d024164e9",
"Name": "sample string 1",
"CompanyId": "5f0f0fa9-3d30-456d-8832-5146b7522262"
}
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": "0fd5f4aa-a94e-41a7-9dc7-b1ad650c6684",
"Name": "sample string 1",
"CompanyId": "e5369aff-a0e1-48cd-a8dd-c5e3a887595b"
},
"Total": 1,
"Message": "sample string 1"
}