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": "81cd7e8e-9c9d-4952-8825-d6fbc211b472",
"Name": "sample string 1",
"CompanyId": "6f12fa4e-8399-4ab3-b1a0-a584273ab14e"
}
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": "ab63ed47-f281-4ab0-83bd-4f91096159a6",
"Name": "sample string 1",
"CompanyId": "fa787aaa-65f8-4f28-ac51-74360a4e5528"
},
"Total": 1,
"Message": "sample string 1"
}