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": "444b786a-3880-4e73-8421-dfa96275e228",
"Name": "sample string 1",
"CompanyId": "e249bb83-dbfc-49e7-a8e0-8199e3e96c2e"
}
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": "263dfa79-014d-43c8-a39a-df4e15925846",
"Name": "sample string 1",
"CompanyId": "608df4b0-1e8f-464e-bfe5-1a0ef980c41b"
},
"Total": 1,
"Message": "sample string 1"
}