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": "f0da8a35-391a-43a3-bcf2-d7cc4079a33c",
"Name": "sample string 1",
"CompanyId": "debf37f0-9884-45a0-83e6-66441e8c33e7"
}
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": "2fbe83db-aa09-45d3-a20f-508ae2b887fd",
"Name": "sample string 1",
"CompanyId": "24ca2c13-e221-4904-8ac8-7cc766dd2c40"
},
"Total": 1,
"Message": "sample string 1"
}