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": "df6545fd-c6d1-489f-9e82-a2973b556596",
"Name": "sample string 1",
"CompanyId": "97e2cf5b-9638-4857-9862-b4e27ee48347"
}
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": "a99fdc72-a19d-46b4-8f02-ad09e7864898",
"Name": "sample string 1",
"CompanyId": "323a90c0-79b1-44e4-8f14-9d5304e91cac"
},
"Total": 1,
"Message": "sample string 1"
}