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": "b9a27243-2948-4b18-9f14-659094486e0d",
"Name": "sample string 1",
"CompanyId": "39c9b70b-4b8f-4dbc-88f6-dcfe8e07abc8"
}
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": "8a72d1aa-812d-4ef3-a70d-76b4cec1bcd7",
"Name": "sample string 1",
"CompanyId": "c48af2ba-2ad6-4f6e-a32f-6fde8a169915"
},
"Total": 1,
"Message": "sample string 1"
}