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": "16a2dc5f-bb22-4cfa-8093-b356876758df",
"Name": "sample string 1",
"CompanyId": "56969e8e-76cc-4276-9f9b-46bd3377d9c9"
}
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": "ffcfac2a-846e-4667-8a52-bdc29efb8371",
"Name": "sample string 1",
"CompanyId": "5647776e-cde5-48da-aca9-78490d4ef921"
},
"Total": 1,
"Message": "sample string 1"
}