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": "3f1029cb-e7d2-4afa-a3ef-cae8e3a84843",
"Name": "sample string 1",
"CompanyId": "d32752a3-2f6d-4049-b3a8-de97e284535d"
}
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": "cb535dee-f1c0-465f-975a-87346e57e314",
"Name": "sample string 1",
"CompanyId": "617b7766-d89c-4584-8485-0c37696d98fe"
},
"Total": 1,
"Message": "sample string 1"
}