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": "ad96b009-534a-47a0-ae9b-265685eade56",
"Name": "sample string 1",
"CompanyId": "51c207bf-c89e-4ef4-8d05-5306e8ca157a"
}
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": "c9297753-62bd-4d14-b990-54f1b88bb2c7",
"Name": "sample string 1",
"CompanyId": "56d319ec-4b35-4372-9b7a-7a466dab7179"
},
"Total": 1,
"Message": "sample string 1"
}