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": "ad4334cc-2be2-453e-88ce-d15ef67ca7e5",
"Name": "sample string 1",
"CompanyId": "3f30057c-430e-4e15-bc7a-da888dc10a73"
}
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": "10a8beb3-9cdf-4636-96eb-742de7fa1862",
"Name": "sample string 1",
"CompanyId": "d9096632-caef-434f-b06c-f2e2a130797c"
},
"Total": 1,
"Message": "sample string 1"
}