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": "8e5a4369-5472-45d7-b2ad-66dd6bf094f1",
"Name": "sample string 1",
"CompanyId": "e7252eaa-c729-4567-b9f8-c4f2a6fed7f7"
}
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": "fcdc1c1b-cf87-4866-ac38-46105f9c8cbd",
"Name": "sample string 1",
"CompanyId": "ae1f5d85-dd87-4061-b43e-0a494c5e3940"
},
"Total": 1,
"Message": "sample string 1"
}