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": "7d018c0f-0ff8-48d3-b82c-6e50160dcb6f",
"Name": "sample string 1",
"CompanyId": "01f5fb4a-70e4-4f6a-a631-1f850ffef2ff"
}
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": "4e1feeb9-402a-46a6-ba89-339e5918bc9e",
"Name": "sample string 1",
"CompanyId": "b5dbecc3-121a-49f8-9a58-731d967c2fe6"
},
"Total": 1,
"Message": "sample string 1"
}