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": "3649610e-eafd-454c-afca-4481b1196af7",
"Name": "sample string 1",
"CompanyId": "937bf36a-6e50-4765-8608-f3b7df2bcfe6"
}
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": "1c92684c-b793-40b4-990a-9e410af50449",
"Name": "sample string 1",
"CompanyId": "53b0eb3a-a267-402a-ac2c-59a851fedc89"
},
"Total": 1,
"Message": "sample string 1"
}