get_autonumber_column
Retrieve detailed information about an AutoNumber column configuration including current format, properties, and settings in Microsoft Dataverse tables.
Instructions
Retrieves detailed information about an AutoNumber column including its current format, properties, and configuration.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
columnLogicalName | Yes | Logical name of the AutoNumber column to retrieve | |
entityLogicalName | Yes | Logical name of the table |
Input Schema (JSON Schema)
{
"properties": {
"columnLogicalName": {
"description": "Logical name of the AutoNumber column to retrieve",
"type": "string"
},
"entityLogicalName": {
"description": "Logical name of the table",
"type": "string"
}
},
"required": [
"entityLogicalName",
"columnLogicalName"
],
"type": "object"
}