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": "a1cf5e69-1e7a-4ec3-a653-60db7563311b",
"Name": "sample string 1",
"CompanyId": "f386a2b7-b0fe-4afd-8942-8980f82ea731"
}
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": "1ff85eaf-01ef-4aed-af44-f2fdc4bb3b51",
"Name": "sample string 1",
"CompanyId": "37b71ec4-5bca-4220-bb51-ca3f2b30abe1"
},
"Total": 1,
"Message": "sample string 1"
}