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": "b93c8d77-9e29-47d4-9974-0a6a478b1767",
"Name": "sample string 1",
"CompanyId": "0a5bd124-b39b-43ab-950b-f0bd7dbc2cd5"
}
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": "e33c207c-8167-46a5-b5cc-0c86fd006ff5",
"Name": "sample string 1",
"CompanyId": "6a3133b1-a1a1-472a-bd3e-a285b052870b"
},
"Total": 1,
"Message": "sample string 1"
}