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": "c4e24b76-48b3-47ce-9ab1-c2cf331152bb",
"Name": "sample string 1",
"CompanyId": "4e8fa82a-afcb-4635-bd34-d571088b1f6a"
}
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": "bb4cef86-055c-4e09-a7d9-c34f8e5c47a7",
"Name": "sample string 1",
"CompanyId": "bba8cd6a-10ea-4f9a-9657-8efe66e7a05e"
},
"Total": 1,
"Message": "sample string 1"
}