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": "e5f09629-1083-40d4-9e7b-687a02b9c33a",
"Name": "sample string 1",
"CompanyId": "a1ad85d8-30e3-4f71-aae5-52b652c67663"
}
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": "80fd4073-ee24-4763-af18-a28435ba2eb9",
"Name": "sample string 1",
"CompanyId": "590cbd39-ffad-44df-9814-1d22a2714272"
},
"Total": 1,
"Message": "sample string 1"
}