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": "69b6f27d-bb43-4f6e-aabe-513ddfc3f943",
"Name": "sample string 1",
"CompanyId": "74c65f12-87c0-4416-ac57-bf9a7bd2791e"
}
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": "035e1fa6-e41b-4edf-a60c-931c1b4feb0e",
"Name": "sample string 1",
"CompanyId": "fee38110-70db-497e-8493-7f00773319a6"
},
"Total": 1,
"Message": "sample string 1"
}