Update
CosmosDB Table Plugin – Update Action
Summary (SEO Meta Description):
The Update Action of the CosmosDB Table Plugin modifies existing records in an Azure Cosmos DB Table.
Use it to keep your stored data current when attributes or values change.
Overview
The Update Action lets your WeHub workflow edit an existing item in a Cosmos DB Table.
It’s ideal for workflows that need to refresh records, correct information, or update dynamic data.
Typical Use Cases:
- Updating user profile details (email, phone number, preferences)
- Correcting configuration or settings data
- Refreshing IoT sensor values or device states
- Maintaining accurate business or transaction records
⚙️ Configuration
| Field | Description | Type / Options | 
|---|---|---|
| Label | Custom name for the action | String | 
| Select connection | Choose or create a secure Azure Cosmos DB connection | Connection | 
| Table name | Name of the table where the record exists | String | 
(The record’s Row Key, Partition Key, and updated field values must be provided via the workflow input payload.)
FAQ
Q: What if the record does not exist?
A: The update will fail. Use Upsert Action if you need to insert a record when it does not already exist.
Q: Can I update multiple records at once?
A: No. Each Update Action modifies a single record per execution. For bulk updates, loop the action in your workflow.
Q: Is the update operation atomic?
A: Yes. Cosmos DB guarantees atomicity for single-record updates.
Keywords: WeHub CosmosDB Table Plugin, Update Action, Azure Table Storage, Modify Record, Cosmos DB Integrations