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": "aa5008f6-94da-437c-9e7e-282f115f7392",
"Name": "sample string 1",
"CompanyId": "d95be0de-c555-4284-b061-bb7ee4cec9e2"
}
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": "b9f87830-4203-496c-bade-461d17ac502d",
"Name": "sample string 1",
"CompanyId": "29429778-c21f-4723-965c-e5ea9572dbc7"
},
"Total": 1,
"Message": "sample string 1"
}