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": "5ec788c8-8517-4c27-92e9-11915cf585f5",
"Name": "sample string 1",
"CompanyId": "9391d6c5-b4c9-40c1-be8a-4ca249279b5e"
}
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": "775dfe38-36bf-493f-8ac4-6e6973e3f939",
"Name": "sample string 1",
"CompanyId": "1355db28-52b8-4ce6-83e3-25bbd7a39fac"
},
"Total": 1,
"Message": "sample string 1"
}