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": "a7055a4e-be18-4907-9ab9-9aaa7d1f234b",
"Name": "sample string 1",
"CompanyId": "464bedaa-7532-41ef-beac-17f55687fa1f"
}
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": "b89df47c-5d07-4bab-b129-6e0c0908512a",
"Name": "sample string 1",
"CompanyId": "86b9ed0d-ebb2-4178-93f2-99d305fc1eff"
},
"Total": 1,
"Message": "sample string 1"
}