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": "8aed723f-6440-42bc-8651-76a83294f863",
"Name": "sample string 1",
"CompanyId": "f21bfbd4-4683-401e-80dd-2684c7863020"
}
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": "22f50d9d-5b00-4cc5-b700-bf0eb7c5e1f1",
"Name": "sample string 1",
"CompanyId": "7805f7cb-2ee5-477f-947f-10e51d505644"
},
"Total": 1,
"Message": "sample string 1"
}