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": "908b03a6-781b-43cf-9346-792a89fce0fb",
"Name": "sample string 1",
"CompanyId": "1340ac6f-e9fa-46f9-ba16-5a4e4ae29435"
}
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": "347c7c3b-dfff-4451-b563-7933d5988aaf",
"Name": "sample string 1",
"CompanyId": "b97ce4e9-95dc-4487-bfe5-088c3e0c7048"
},
"Total": 1,
"Message": "sample string 1"
}