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": "7cb0ce0f-03ae-4abd-9bda-da8bc7e94ca4",
"Name": "sample string 1",
"CompanyId": "0ccb329a-cf7f-49b8-b80a-5527114b555e"
}
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": "63fc7029-a820-48e0-8657-865ac4e2faae",
"Name": "sample string 1",
"CompanyId": "347d2ad1-81b0-46a4-8711-291714254f2e"
},
"Total": 1,
"Message": "sample string 1"
}