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": "37fca179-ee7d-43e6-820a-5731fc6fa4f0",
"Name": "sample string 1",
"CompanyId": "63e409a9-0d34-46c0-b418-fc64322fdbaa"
}
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": "fb1da270-00b2-4157-9c69-9a708dac6def",
"Name": "sample string 1",
"CompanyId": "df4ae494-fcfd-41bc-8d0a-5840b684ac20"
},
"Total": 1,
"Message": "sample string 1"
}