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": "67943124-2dfa-4ae5-a276-4b89288814e1",
"Name": "sample string 1",
"CompanyId": "2c03c308-2e33-4e6e-805a-5a3aa678fa74"
}
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": "1d5a4cd2-2fb6-4c2e-a81f-42009785c916",
"Name": "sample string 1",
"CompanyId": "b2a485ed-3425-46ba-82a5-093c27b7ed2d"
},
"Total": 1,
"Message": "sample string 1"
}