Skip to main content
Every endpoint page documents its own request and response fields. This page collects the shapes that are shared across endpoints.

Common parameters

Session cookie set by Sign in: omnistrate_token=<jwt>.
string
required
ID of the resource instance. Present on every endpoint that targets a single instance.
string
ID of the subscription that owns the instance. Optional on every endpoint.

List response

string[]
IDs of the resource instances.
200 OK

Create response

string
ID of the created resource instance.
202 Accepted

Describe response

string
ID of the resource instance.
string
Lifecycle status of the instance, for example RUNNING or STOPPED.
string
Cloud provider the instance runs on.
string
Region the instance runs in.
string
Network type of the instance.
string
Custom network the instance is provisioned in. Returned only by Enterprise endpoints.
string
Time the instance was created.
string
Time the instance was last modified.
object
Deployment outputs, including connection endpoints and credentials.
200 OK

Copy snapshot

string
required
Region to copy the snapshot to.
string
ID of the snapshot to copy from.
string
ID of the snapshot that was created.

Failover

string
required
ID of the failed replica to fail over from.
string
required
Action to take on the failed replica.

Lifecycle operations

DELETE, UPDATE, BACKUP, FAILOVER, START, STOP, and RESTART return 202 Accepted with an empty body. The operation runs asynchronously; poll the Describe endpoint until status reflects the new state.

Instance configuration

Create and update requests wrap instance settings in a requestParams object. The available settings depend on the service tier and component. Each create and update page has a Sizing and tier availability section listing the instance types and the fields that tier supports. Fields marked Create only are fixed once the instance is deployed and are rejected by Update instance. The remaining fields can be changed at any time.

FalkorDB configuration parameters

The falkorDB* fields set FalkorDB configuration parameters on the deployed instance. See the FalkorDB configuration reference for the full behavior of each parameter.

Availability by tier

Deployment-model fields are sent at the top level of the request body rather than inside requestParams: Enterprise BYOA adds two fields inside requestParams: cloud_provider_account_config_id, the cloud provider account configuration to deploy into, and cloud_provider_native_network_id, an existing network in your account to attach to.

Error

Error responses use the application/vnd.goa.error content type.
string
required
Name of this class of errors, for example bad_request.
string
required
Unique identifier for this particular occurrence of the problem.
string
required
Human-readable explanation specific to this occurrence of the problem.
boolean
required
Whether the error is temporary and the request can be retried.
boolean
required
Whether the error was caused by a timeout.
boolean
required
Whether the error is a server-side fault.
400 Bad Request