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": "fe78b8c9-9acd-47c4-a5f1-7f01cce38739",
"Name": "sample string 1",
"CompanyId": "ab1bcae0-19a1-4f4c-86e5-ab5e87f5d61c"
}
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": "f817eafd-7a88-46b6-9f78-5f2a2cc0541c",
"Name": "sample string 1",
"CompanyId": "54b03ad3-51c1-474a-bbb4-b0c63660ed9d"
},
"Total": 1,
"Message": "sample string 1"
}