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": "d1eeb07a-467e-40d9-a84e-4285c9a2e029",
"Name": "sample string 1",
"CompanyId": "60901766-e8aa-41cc-afe9-2512df9baf80"
}
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": "71e33773-6968-43d9-aa1e-c3705fd2f082",
"Name": "sample string 1",
"CompanyId": "c232fb55-6238-4799-9a27-78d152be5e12"
},
"Total": 1,
"Message": "sample string 1"
}