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": "837951a6-5b1a-46ec-ae9b-b585c031b84f",
"Name": "sample string 1",
"CompanyId": "dd763eb5-bfd7-45f0-a75f-b4013f9761fe"
}
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": "23df940a-407d-4739-a1f9-af29cbeb45f6",
"Name": "sample string 1",
"CompanyId": "60c61823-71b3-4530-b7d4-caca9f228d99"
},
"Total": 1,
"Message": "sample string 1"
}