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": "d815a874-d41a-4a01-adc0-ddf8c2788eaa",
"Name": "sample string 1",
"CompanyId": "ea4febde-88af-44c3-a958-874e0f2afb22"
}
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": "a6b275a2-085d-44dc-9294-20ca56945836",
"Name": "sample string 1",
"CompanyId": "a14a3520-2f4f-4030-a608-8b3045547417"
},
"Total": 1,
"Message": "sample string 1"
}