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": "8df7050f-fff7-4f2e-88c5-4824c7a3a4ff",
"Name": "sample string 1",
"CompanyId": "d050bdda-b5bc-473b-8d8f-eb0e7690591c"
}
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": "7b4dabb3-a1af-48e0-bf85-f9a44570f949",
"Name": "sample string 1",
"CompanyId": "c8d942be-b71e-4372-85ba-23bc4b236ed5"
},
"Total": 1,
"Message": "sample string 1"
}