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": "d581cf14-439e-4845-a4cb-f516dd000052",
"Name": "sample string 1",
"CompanyId": "278fd523-6e0d-48dc-887f-65958aa28b4b"
}
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": "06e6cc07-bf9b-4dc1-a49b-e287d458aa1f",
"Name": "sample string 1",
"CompanyId": "b013d304-0b7a-4bba-bd0d-253c47ea2ec6"
},
"Total": 1,
"Message": "sample string 1"
}