Creating a Redis database using the API
This article describes how to create a Redis database via the API.
Prerequisites
To create a Redis database, you will need to have access to a project. Refer to the guide "create a project" for this. You will need the project ID for the subsequent operations.
List available Redis versions
Set a request to the GET/ endpoint to get a list of available Redis versions.
Creating a Redis database
To create a Redis database, send a request to the POST/ endpoint. The request body must contain a JSON object with the following properties:
descriptionshould contain a human-readable description of the database. This is a required value.versionshould contain the version of the database. This is a required value, and must reference an existing version as returned by the GET/endpoint.v2/ redis-versions/
The response will contain the following properties:
idcontains the ID of the created database.
Accessing the database
After creating a database, you can send a request to the GET/ route.
Among others, the response will contain the following values:
hostnameandportcontain the hostname and port of the database. You can use these values to connect to the database from within your hosting environment.configurationallows you to inspect the specific configuration values that were applied to your database.