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": "8fe773d4-30c8-40f3-9e6c-c8643d83b366",
"Name": "sample string 1",
"CompanyId": "a13589be-dc3b-46bd-b3b5-c9709d0e4f8b"
}
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": "1111cd77-b65a-4d9b-a21a-e7a20a09861c",
"Name": "sample string 1",
"CompanyId": "b809507a-4696-4384-8739-f8758251b5d9"
},
"Total": 1,
"Message": "sample string 1"
}