Get
CosmosDB Table Plugin – Get Action
Summary (SEO Meta Description):
The Get Action of the CosmosDB Table Plugin retrieves a specific record from an Azure Cosmos DB Table by using its partition key and row key.
Overview
Use the Get Action to fetch a single item from a Cosmos DB Table when you know its unique identifiers.
It’s perfect for workflows that need to retrieve details of a single record for processing or verification.
Typical Use Cases:
- Retrieving a user profile by unique ID
- Fetching configuration data stored in Cosmos DB Table
- Validating if a specific record exists before update or deletion
- Checking the latest values of a single data point
⚙️ 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 | Target table to retrieve the record from | String | 
| Partition key | Partition key identifying the record to fetch | String | 
(The row key or other unique identifier is typically supplied via the workflow input payload.)
FAQ
Q: What happens if the record doesn’t exist?
A: The action returns an empty response or error message, depending on the configured workflow error handling.
Q: Can I fetch multiple records at once?
A: No. The Get Action is intended for single-record retrieval. Use a query or custom action to fetch multiple records.
Q: Does WeHub store retrieved data?
A: No. WeHub only passes the retrieved data to the workflow for processing and does not store it.
Keywords: WeHub CosmosDB Table Plugin, Get Action, Azure Table Storage, Retrieve Record, Cosmos DB Integrations