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": "340098ef-77a0-4e43-9a0b-d306d6a5e0db",
"Name": "sample string 1",
"CompanyId": "46905629-081d-4241-a7d2-25cfa5ead1f9"
}
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": "2fdc1dca-0c34-4ae6-95d5-55f36e79b282",
"Name": "sample string 1",
"CompanyId": "2d9fcf70-68a0-4e77-9e96-5cec860b3baa"
},
"Total": 1,
"Message": "sample string 1"
}