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": "79173d70-127a-4dd6-bcac-e03519dc79c6",
"Name": "sample string 1",
"CompanyId": "d93397db-e1d3-43c0-99a2-afc6add636c0"
}
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": "800d94c8-fe2e-4c72-9c8e-cf5de86c424d",
"Name": "sample string 1",
"CompanyId": "400dfdf9-a653-49d2-9979-495a6e1b1ecc"
},
"Total": 1,
"Message": "sample string 1"
}