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": "4be27b34-b07a-45f6-9e62-2e1a4009a332",
"Name": "sample string 1",
"CompanyId": "6cf95506-c55f-49fe-8c5c-a8c757edbcef"
}
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": "17b3d092-c79a-403f-a9ed-6d5a239143c4",
"Name": "sample string 1",
"CompanyId": "da195be6-3028-405a-9e50-bd58b08b9d42"
},
"Total": 1,
"Message": "sample string 1"
}