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": "3c08a82a-5cd5-45cb-bf1a-4ce42da3a2b2",
"Name": "sample string 1",
"CompanyId": "59f0a7a2-1f93-4c33-8e03-cf38c751a7d8"
}
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": "0f25b0e2-c407-49f2-8aa2-dcc0258398aa",
"Name": "sample string 1",
"CompanyId": "0c3776bb-58ad-49ab-80eb-f846f4e182bb"
},
"Total": 1,
"Message": "sample string 1"
}