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": "1110075d-3c21-47ef-8b73-00e4a7fa3075",
"Name": "sample string 1",
"CompanyId": "6f913f08-4a43-40f3-a57b-06cd308e794c"
}
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": "2be54cd7-752b-4cf6-9c78-b25425893c55",
"Name": "sample string 1",
"CompanyId": "e7a56d7a-98c2-4b76-96c8-f54ab2ce2edf"
},
"Total": 1,
"Message": "sample string 1"
}