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": "4f14c311-bd3a-47be-8dc6-f56344d81254",
"Name": "sample string 1",
"CompanyId": "96c244fe-f443-4994-b53c-1977eabdba52"
}
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": "9ab77d28-17b5-4bd4-8b04-177cd8cbf88d",
"Name": "sample string 1",
"CompanyId": "14bf25ef-1434-4fed-9926-8be5fe0dc59d"
},
"Total": 1,
"Message": "sample string 1"
}