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": "a9ddb52c-2b12-4305-bec6-fdc969d0cd97",
"Name": "sample string 1",
"CompanyId": "47942ae1-11dc-44a1-b43d-ee9b9f38beec"
}
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": "3bcc75df-c99f-49b7-b7dc-fad6294501a1",
"Name": "sample string 1",
"CompanyId": "bb98db0e-0914-40cb-a0ed-6986a4dd53e5"
},
"Total": 1,
"Message": "sample string 1"
}