Add Table Entity
Add an entity to an Azure Table.

Properties
| Name | Required | Description |
|---|---|---|
| Title | No | A user-defined title for the action. |
| Connection | Yes | Specify the connection to the Azure Table Storage account. |
| Table name | Yes | The name of the table to insert into. |
| Entity | Yes | The entity data to be inserted into the table. |
| PartitionKey type | No | Specify how the PartitionKey is determined (e.g., use an entity property). |
| PartitionKey property | No | Define the property name used for the PartitionKey (if applicable). |
| PartitionKey value | No | Define the value of the PartitionKey (if applicable). |
| RowKey property | No | Define the property name used for the RowKey (if applicable). |
| Overwrite existing | No | A boolean option to specify whether to overwrite an existing entity with the same keys (true/false). |
PartitionKey type

- Use an entity property – This option allows the PartitionKey to be based on a property from the entity. “PartitionKey property” will be applicable if the “PartitionKey type” is set to “Use a custom entity property”.

- Set a custom value – This option lets you define a custom value for the PartitionKey. “PartitionKey value” will be applicable if the “PartitionKey type” is set to “Use a custom value”.
