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": "45819881-0b36-40f1-92ae-9f6a55ef8bc9",
"Name": "sample string 1",
"CompanyId": "9123f9f0-763d-447a-bada-f0bab405f805"
}
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": "6b0e82c3-949f-46a3-a27a-7109e3349382",
"Name": "sample string 1",
"CompanyId": "b469e9e5-91bb-4362-adb4-d360c7235d40"
},
"Total": 1,
"Message": "sample string 1"
}