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": "30d84cb5-0f0f-4232-a2e5-474f001fe81b",
"Name": "sample string 1",
"CompanyId": "788b94eb-5da2-49f2-9291-e154d85292c4"
}
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": "531cff4b-b06a-4fae-a8fa-919007107605",
"Name": "sample string 1",
"CompanyId": "35d13a2d-2a1b-417f-985b-a307768dd02b"
},
"Total": 1,
"Message": "sample string 1"
}