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": "6dd3b01c-65a1-4dc2-bf6f-6e16895be618",
"Name": "sample string 1",
"CompanyId": "d41b2432-f217-40b2-961d-c05872383cad"
}
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": "4d97c46a-f156-4935-8cb5-e79cd7b8d072",
"Name": "sample string 1",
"CompanyId": "2ad84b1d-7fbc-4d93-8e05-e0003b4d21f1"
},
"Total": 1,
"Message": "sample string 1"
}