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": "1793bf7a-3e92-4954-8124-462628fe4b43",
"Name": "sample string 1",
"CompanyId": "683fbc09-f5cf-4967-8186-a3588cf38a1a"
}
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": "430ed4c5-2682-4d2c-8f3f-43eea6f05564",
"Name": "sample string 1",
"CompanyId": "33fa2740-a195-4663-86d4-def6d7a3e609"
},
"Total": 1,
"Message": "sample string 1"
}