Appearance
Redis Cloud
Manage subscriptions and databases with the Redis Cloud API.
| Detail | Value |
|---|---|
| Category | Database |
| Base URL | https://api.redislabs.com/v1 |
| Authentication | API Key |
| Endpoints | 8 |
| Connector key | redis-cloud |
Using Redis Cloud in a workflow
- Go to Connections and click New Connection.
- Pick Redis Cloud from the marketplace.
- Enter your credentials (see Authentication above for what's expected).
- In a workflow, drop an API Call node and select this connection.
- Pick the operation you need from the Operation dropdown — the full list is below.
Available endpoints
| Endpoint | Summary |
|---|---|
GET /subscriptions | List subscriptions |
POST /subscriptions | Create a subscription |
GET /subscriptions/{subscriptionId} | Get subscription details |
GET /subscriptions/{subscriptionId}/databases | List databases |
POST /subscriptions/{subscriptionId}/databases | Create a database |
GET /subscriptions/{subscriptionId}/databases/{databaseId} | Get database details |
PUT /subscriptions/{subscriptionId}/databases/{databaseId} | Update a database |
DELETE /subscriptions/{subscriptionId}/databases/{databaseId} | Delete a database |
Each endpoint is documented in full below. Use the outline on the right to jump to one.
GET /subscriptions
List subscriptions
| Detail | Value |
|---|---|
| Operation ID | database.listSubscriptions |
| Method | GET |
| Path | /subscriptions |
Parameters
No parameters.
Using this endpoint in a workflow
- Add an API Call node to your workflow.
- Pick your Redis Cloud connection from the Connection dropdown.
- In the Operation dropdown, select
database.listSubscriptions. - Fill in the parameter fields that appear. Use
{{...}}to reference upstream values.
What it returns
The API Call node writes the response to the workflow context:
{
status: 200,
success: true,
data: { ...response body from the API... },
latencyMs: 142
}Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream Redis Cloud API reference.
POST /subscriptions
Create a subscription
| Detail | Value |
|---|---|
| Operation ID | database.createSubscription |
| Method | POST |
| Path | /subscriptions |
Parameters
No parameters.
Using this endpoint in a workflow
- Add an API Call node to your workflow.
- Pick your Redis Cloud connection from the Connection dropdown.
- In the Operation dropdown, select
database.createSubscription. - Fill in the parameter fields that appear. Use
{{...}}to reference upstream values.
What it returns
The API Call node writes the response to the workflow context:
{
status: 200,
success: true,
data: { ...response body from the API... },
latencyMs: 142
}Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream Redis Cloud API reference.
GET /subscriptions/{subscriptionId}
Get subscription details
| Detail | Value |
|---|---|
| Operation ID | database.getSubscription |
| Method | GET |
| Path | /subscriptions/{subscriptionId} |
Parameters
No parameters.
Using this endpoint in a workflow
- Add an API Call node to your workflow.
- Pick your Redis Cloud connection from the Connection dropdown.
- In the Operation dropdown, select
database.getSubscription. - Fill in the parameter fields that appear. Use
{{...}}to reference upstream values.
What it returns
The API Call node writes the response to the workflow context:
{
status: 200,
success: true,
data: { ...response body from the API... },
latencyMs: 142
}Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream Redis Cloud API reference.
GET /subscriptions/{subscriptionId}/databases
List databases
| Detail | Value |
|---|---|
| Operation ID | database.listDatabases |
| Method | GET |
| Path | /subscriptions/{subscriptionId}/databases |
Parameters
No parameters.
Using this endpoint in a workflow
- Add an API Call node to your workflow.
- Pick your Redis Cloud connection from the Connection dropdown.
- In the Operation dropdown, select
database.listDatabases. - Fill in the parameter fields that appear. Use
{{...}}to reference upstream values.
What it returns
The API Call node writes the response to the workflow context:
{
status: 200,
success: true,
data: { ...response body from the API... },
latencyMs: 142
}Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream Redis Cloud API reference.
POST /subscriptions/{subscriptionId}/databases
Create a database
| Detail | Value |
|---|---|
| Operation ID | database.createDatabase |
| Method | POST |
| Path | /subscriptions/{subscriptionId}/databases |
Parameters
No parameters.
Using this endpoint in a workflow
- Add an API Call node to your workflow.
- Pick your Redis Cloud connection from the Connection dropdown.
- In the Operation dropdown, select
database.createDatabase. - Fill in the parameter fields that appear. Use
{{...}}to reference upstream values.
What it returns
The API Call node writes the response to the workflow context:
{
status: 200,
success: true,
data: { ...response body from the API... },
latencyMs: 142
}Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream Redis Cloud API reference.
GET /subscriptions/{subscriptionId}/databases/{databaseId}
Get database details
| Detail | Value |
|---|---|
| Operation ID | database.getDatabase |
| Method | GET |
| Path | /subscriptions/{subscriptionId}/databases/{databaseId} |
Parameters
No parameters.
Using this endpoint in a workflow
- Add an API Call node to your workflow.
- Pick your Redis Cloud connection from the Connection dropdown.
- In the Operation dropdown, select
database.getDatabase. - Fill in the parameter fields that appear. Use
{{...}}to reference upstream values.
What it returns
The API Call node writes the response to the workflow context:
{
status: 200,
success: true,
data: { ...response body from the API... },
latencyMs: 142
}Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream Redis Cloud API reference.
PUT /subscriptions/{subscriptionId}/databases/{databaseId}
Update a database
| Detail | Value |
|---|---|
| Operation ID | database.updateDatabase |
| Method | PUT |
| Path | /subscriptions/{subscriptionId}/databases/{databaseId} |
Parameters
No parameters.
Using this endpoint in a workflow
- Add an API Call node to your workflow.
- Pick your Redis Cloud connection from the Connection dropdown.
- In the Operation dropdown, select
database.updateDatabase. - Fill in the parameter fields that appear. Use
{{...}}to reference upstream values.
What it returns
The API Call node writes the response to the workflow context:
{
status: 200,
success: true,
data: { ...response body from the API... },
latencyMs: 142
}Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream Redis Cloud API reference.
DELETE /subscriptions/{subscriptionId}/databases/{databaseId}
Delete a database
| Detail | Value |
|---|---|
| Operation ID | database.deleteDatabase |
| Method | DELETE |
| Path | /subscriptions/{subscriptionId}/databases/{databaseId} |
Parameters
No parameters.
Using this endpoint in a workflow
- Add an API Call node to your workflow.
- Pick your Redis Cloud connection from the Connection dropdown.
- In the Operation dropdown, select
database.deleteDatabase. - Fill in the parameter fields that appear. Use
{{...}}to reference upstream values.
What it returns
The API Call node writes the response to the workflow context:
{
status: 200,
success: true,
data: { ...response body from the API... },
latencyMs: 142
}Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream Redis Cloud API reference.