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": "a94f69a4-a1bf-4e99-8a7f-1ebf4ac3e339",
"Name": "sample string 1",
"CompanyId": "fe368f18-5766-4369-b88c-3f9e6df5ef5d"
}
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": "04f92286-491b-4384-89ca-a0f1ffb8c5fd",
"Name": "sample string 1",
"CompanyId": "a1d33d10-0639-4ec9-9249-d8056b6bd402"
},
"Total": 1,
"Message": "sample string 1"
}