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": "5a57fa2a-0e2d-4cef-8b39-e26746b99860",
"Name": "sample string 1",
"CompanyId": "67c94c9f-35f5-4ea0-afde-f9587e85bc6e"
}
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": "1944943d-8d51-4578-b891-4130e90f6a42",
"Name": "sample string 1",
"CompanyId": "99346d68-aa1c-4a19-9a65-5fbb72785f50"
},
"Total": 1,
"Message": "sample string 1"
}