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": "af958ba3-5fc8-464e-9592-185730ba82f4",
"Name": "sample string 1",
"CompanyId": "db5ae4f5-da4c-4035-8bc1-d786d8a01d18"
}
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": "f3013806-0847-43e3-8ed6-b26f80062eb5",
"Name": "sample string 1",
"CompanyId": "7586b7c1-b350-416e-8097-26460ea33bfe"
},
"Total": 1,
"Message": "sample string 1"
}