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": "c7bb0efc-12af-409f-a110-a909da255b96",
"Name": "sample string 1",
"CompanyId": "e9279895-6360-49aa-9c42-7abbf9334f06"
}
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": "de7edd61-3349-4ffb-8a34-92634e3ab7f5",
"Name": "sample string 1",
"CompanyId": "23c021d1-97ce-449c-9999-1ed14913fc85"
},
"Total": 1,
"Message": "sample string 1"
}