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": "533e2a61-a0c4-4bf5-a991-65bfdd0b25c8",
"Name": "sample string 1",
"CompanyId": "ef2f843e-c92a-4365-a8ab-8e7e35284321"
}
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": "31b06197-d7dc-4ceb-84f4-39ec31b54858",
"Name": "sample string 1",
"CompanyId": "c7c60835-3c5d-4eb0-84e9-526ccda67312"
},
"Total": 1,
"Message": "sample string 1"
}