Skip to main content

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

FieldDescriptionType / Options
LabelCustom name for the actionString
Select connectionChoose or create a secure Azure Cosmos DB connectionConnection
Table nameTarget table to retrieve the record fromString
Partition keyPartition key identifying the record to fetchString

(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