update_dataverse_table
Modify existing Dataverse table properties including display names, descriptions, and feature settings like activities, notes, auditing, and duplicate detection.
Instructions
Updates the properties and configuration of an existing Dataverse table. Use this to modify table settings like display names, descriptions, or feature enablement (activities, notes, auditing, etc.). Changes are published automatically.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
description | No | New description of the table | |
displayCollectionName | No | New display collection name for the table | |
displayName | No | New display name for the table | |
hasActivities | No | Whether the table can have activities | |
hasNotes | No | Whether the table can have notes | |
isAuditEnabled | No | Whether auditing is enabled | |
isConnectionsEnabled | No | Whether connections are enabled | |
isDocumentManagementEnabled | No | Whether document management is enabled | |
isDuplicateDetectionEnabled | No | Whether duplicate detection is enabled | |
isMailMergeEnabled | No | Whether mail merge is enabled | |
isValidForQueue | No | Whether records can be added to queues | |
logicalName | Yes | Logical name of the table to update |
Input Schema (JSON Schema)
{
"properties": {
"description": {
"description": "New description of the table",
"type": "string"
},
"displayCollectionName": {
"description": "New display collection name for the table",
"type": "string"
},
"displayName": {
"description": "New display name for the table",
"type": "string"
},
"hasActivities": {
"description": "Whether the table can have activities",
"type": "boolean"
},
"hasNotes": {
"description": "Whether the table can have notes",
"type": "boolean"
},
"isAuditEnabled": {
"description": "Whether auditing is enabled",
"type": "boolean"
},
"isConnectionsEnabled": {
"description": "Whether connections are enabled",
"type": "boolean"
},
"isDocumentManagementEnabled": {
"description": "Whether document management is enabled",
"type": "boolean"
},
"isDuplicateDetectionEnabled": {
"description": "Whether duplicate detection is enabled",
"type": "boolean"
},
"isMailMergeEnabled": {
"description": "Whether mail merge is enabled",
"type": "boolean"
},
"isValidForQueue": {
"description": "Whether records can be added to queues",
"type": "boolean"
},
"logicalName": {
"description": "Logical name of the table to update",
"type": "string"
}
},
"required": [
"logicalName"
],
"type": "object"
}