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": "31e97ef3-6d2b-4e25-bfca-ee62ad8f4df3",
"Name": "sample string 1",
"CompanyId": "3d3a649a-f716-4100-a88b-24221af922ba"
}
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": "a6f09b59-0f26-4248-a10b-18e251159a57",
"Name": "sample string 1",
"CompanyId": "97e5f6ed-d2fd-4a70-9161-fdeba6fc296b"
},
"Total": 1,
"Message": "sample string 1"
}