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": "205335cd-5f86-4516-afd3-05f2dc5c4d03",
"Name": "sample string 1",
"CompanyId": "30d447ba-24fb-4627-961f-587ca6ea0a02"
}
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": "764036fa-662e-455e-8dd4-527769eae5f0",
"Name": "sample string 1",
"CompanyId": "08e431f2-3148-4b9d-a8d1-7a2fd7e32485"
},
"Total": 1,
"Message": "sample string 1"
}