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": "75d9f024-8469-4e80-b39a-7555ddf727bf",
"Name": "sample string 1",
"CompanyId": "117c067e-56b6-475f-bac5-bee19b002d68"
}
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": "e3923139-4508-4d8f-acd3-0cbd19a6486a",
"Name": "sample string 1",
"CompanyId": "3cad5556-d330-47c0-b54a-964dd8b7f69a"
},
"Total": 1,
"Message": "sample string 1"
}