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": "06db4b35-18f4-4073-a21e-69a7b0a7942d",
"Name": "sample string 1",
"CompanyId": "cb21cd79-f2cf-43ae-9b66-084f18c6b538"
}
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": "2d158ecb-15e9-4ee8-bcd5-b4aa25b5b3b5",
"Name": "sample string 1",
"CompanyId": "7ff5a02b-fc7e-49f8-a5a9-b463a2cd0678"
},
"Total": 1,
"Message": "sample string 1"
}