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": "c04a7fc7-4fea-4133-ba19-9d83e32d72fe",
"Name": "sample string 1",
"CompanyId": "d5f2c300-3096-40cf-845b-bdc1e1af0b17"
}
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": "18148754-8738-4c2c-920a-897d9795c66f",
"Name": "sample string 1",
"CompanyId": "0c0261d1-90a6-4aae-bf8f-aa5b0456fee6"
},
"Total": 1,
"Message": "sample string 1"
}