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": "efb17e0d-d686-4cf9-989d-a1098dcac064",
"Name": "sample string 1",
"CompanyId": "67f43ce5-1e4a-4358-9460-1b3beb45a2a9"
}
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": "30f2061e-4177-419e-bcb3-75188da145b4",
"Name": "sample string 1",
"CompanyId": "e7128400-7681-47b1-9e04-4a6b7358b79c"
},
"Total": 1,
"Message": "sample string 1"
}