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": "9df2d23c-ea99-4188-93fe-4982c617a5b7",
"Name": "sample string 1",
"CompanyId": "c88ad2ed-1245-4987-a4fe-13eb0ce2207b"
}
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": "4751e226-d636-4f35-8878-84f613fe146b",
"Name": "sample string 1",
"CompanyId": "c641b4b5-de5f-48b1-b249-0e271922a7bb"
},
"Total": 1,
"Message": "sample string 1"
}