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": "e0e35246-c87a-43c0-95bf-b4b628d3076f",
"Name": "sample string 1",
"CompanyId": "5afa6808-4491-47d1-9062-f9b0152b76bd"
}
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": "92ce2182-41ea-4ee1-9167-84176489b3b1",
"Name": "sample string 1",
"CompanyId": "1a448cb2-15ae-41a4-a247-b3c0a8be6622"
},
"Total": 1,
"Message": "sample string 1"
}