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": "454700c6-7c07-4c00-b8c8-167555b3ae83",
"Name": "sample string 1",
"CompanyId": "fe9ffa15-e6e0-49b8-b3d5-a5c343636196"
}
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": "5f0621e4-d4db-4738-817c-fac5f1ecf01b",
"Name": "sample string 1",
"CompanyId": "d4ccc05d-5a9a-4270-9761-fb6e7298dac9"
},
"Total": 1,
"Message": "sample string 1"
}