Skip to main content
Version: Next

Replication API Specification Reference

Since version 1.8.0, ReductStore supports append-only replication. This feature allows replicating data from one bucket to another.

For more information about replications, read the Replication Guide.

Get a List of Replication Tasks​

The method returns a list of replication Task with their statuses.

To use this method, you need an access token with full access.

GET
/api/v1/replications
Get a list of replication tasks

Show Information about a Replication Task​

This method provides complete information about a replication task, including diagnostics.

This method requires a full access token.

GET
/api/v1/replications/:replication_name
Show information about a replication task

Create a New Replication Task​

The method creates a replication task with given settings.

To use this method, you need an access token with full access.

POST
/api/v1/replications/:replication
Create a new replication tasl

Update an Existing Replication Task​

The method updates an existing replication task with given settings. To use this method, you need an access token with full access.

PUT
/api/v1/replications/:replication_name
Update an existing replication task

Delete a Replication Task​

The method deletes a replication task.

To use this method, you need an access token with full access.

DELETE
/api/v1/replications/:replication_name
Delete a replication task