set_autonumber_seed
Set the starting number for an AutoNumber column in Dataverse to control sequential numbering for future records in your table.
Instructions
Sets the seed value for an AutoNumber column's sequential segment using the SetAutoNumberSeed action. This controls the starting number for future records. Note: Seed values are environment-specific and not included in solutions.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
columnLogicalName | Yes | Logical name of the AutoNumber column | |
entityLogicalName | Yes | Logical name of the table containing the AutoNumber column | |
seedValue | Yes | Next sequential number to use (e.g., 10000 to start from 10000) |
Input Schema (JSON Schema)
{
"properties": {
"columnLogicalName": {
"description": "Logical name of the AutoNumber column",
"type": "string"
},
"entityLogicalName": {
"description": "Logical name of the table containing the AutoNumber column",
"type": "string"
},
"seedValue": {
"description": "Next sequential number to use (e.g., 10000 to start from 10000)",
"minimum": 1,
"type": "integer"
}
},
"required": [
"entityLogicalName",
"columnLogicalName",
"seedValue"
],
"type": "object"
}