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": "5d2c930f-e9dd-43cc-bbe2-cc73cd4dea17",
"Name": "sample string 1",
"CompanyId": "6d01673c-ed52-41d4-9cab-ffbc4f206c84"
}
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": "24d431b8-142b-4949-8598-ce7e6ee74799",
"Name": "sample string 1",
"CompanyId": "76079f4f-eb4b-41cb-95e1-931bdcc7f4fa"
},
"Total": 1,
"Message": "sample string 1"
}