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": "47e3c6fb-153d-4ba5-95c6-27857f3a24bc",
"Name": "sample string 1",
"CompanyId": "22310a72-da84-4be2-a75f-edf58de7864c"
}
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": "88c629eb-4847-468a-bc75-6e5b169bd467",
"Name": "sample string 1",
"CompanyId": "57ab2c44-3f13-4eab-9444-5dfd54715d1f"
},
"Total": 1,
"Message": "sample string 1"
}