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": "3b5df18f-7a42-4ef6-b52c-6b0927a5a3d2",
"Name": "sample string 1",
"CompanyId": "941cf0aa-c86f-4f09-b687-3ee99a700183"
}
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": "bb754605-9e29-45d6-91be-313240ae586d",
"Name": "sample string 1",
"CompanyId": "d573a36b-a86a-45ae-b69e-a6caacbef054"
},
"Total": 1,
"Message": "sample string 1"
}