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": "01d3c19e-cd7f-4dff-bf92-e9b0c182f3f2",
"Name": "sample string 1",
"CompanyId": "64309833-c829-4aba-8481-3f4b3d0d59d3"
}
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": "0a2e8ddd-64aa-45f1-be43-527e875f3181",
"Name": "sample string 1",
"CompanyId": "62b3785f-2635-432a-be93-fec3292336eb"
},
"Total": 1,
"Message": "sample string 1"
}