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": "53b8ffc6-cb5b-451d-b48e-6383ba8cf5c7",
"Name": "sample string 1",
"CompanyId": "abcea5b9-b28b-4b4c-af4e-6547d863a2c8"
}
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": "47c7ccf6-98a5-4214-b6db-e0ff0f3e3bd5",
"Name": "sample string 1",
"CompanyId": "e3f21040-98ca-4917-8ae5-10bb2dd53bbc"
},
"Total": 1,
"Message": "sample string 1"
}