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": "9f85c8f7-0cc1-4104-96a9-5d035999cd2d",
"Name": "sample string 1",
"CompanyId": "9849bf36-2e60-41e5-82ee-846ba06f054d"
}
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": "5d20e2d2-9be8-40ea-a478-cc8be2811df5",
"Name": "sample string 1",
"CompanyId": "afd4c462-73f8-45d1-8990-df73ba584568"
},
"Total": 1,
"Message": "sample string 1"
}