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": "79d5c18c-dc1b-4dd2-b65f-16df9b91d53d",
"Name": "sample string 1",
"CompanyId": "6538b487-37d6-486a-92dc-bb2a35b0234d"
}
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": "499f8d5c-8a80-44e3-a8f4-0fa45dad5b88",
"Name": "sample string 1",
"CompanyId": "cf00176f-c30d-4f67-9403-d4b06284f4f0"
},
"Total": 1,
"Message": "sample string 1"
}