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": "900cafb0-1ac2-4448-b9fd-702eb391833e",
"Name": "sample string 1",
"CompanyId": "6212cf0b-c753-49e6-bfd0-91814cd6bf6a"
}
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": "6500e8da-dc55-4102-959a-864b421ed13f",
"Name": "sample string 1",
"CompanyId": "d2a33996-2608-4eaa-8b22-1249bc003ec5"
},
"Total": 1,
"Message": "sample string 1"
}