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": "95c54d2e-2f39-4f32-a20e-36e07c9bd406",
"Name": "sample string 1",
"CompanyId": "bb2a23be-ade0-4f5c-b4cd-ac1cdcf3faf3"
}
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": "6b30e18f-6d72-4cfa-8264-6f40efae5005",
"Name": "sample string 1",
"CompanyId": "2c448317-e766-4f31-9a31-f700b4835fb3"
},
"Total": 1,
"Message": "sample string 1"
}