/sync/oracle

Follow

Synchronize databases using incremental backups

Request

HTTP Method: POST
Content Type: application/json

Parameters

Property

Type

Description

Required

configuration_id

integer(int64)

configuration ID (non-negative)

required

resume

boolean

resume a prior sync operation

source_backup_dir

string

directory for database backup on source host

standby_backup_dir

string

directory for database backup on standby host

sync_lag

boolean

synchronize lag

sync_nologging

boolean

synchronize no-logging operations

transportable

boolean

use transportable media for the database backup

{
    "params": {
        "configuration_id": 1,
        "resume": false,
        "source_backup_dir": "string",
        "standby_backup_dir": "string",
        "sync_lag": false,
        "sync_nologging": false,
        "transportable": false
    }
}

Response

HTTP Status: 200

Content Type: application/json

Response

Property

Type

Description

error

object of type error_response

error response

result

object of type task_response

successful

boolean

response with error or not

error_response

Property

Type

Description

message

string

error message

task_response

Property

Type

Description

task_id

integer(int64)

task ID

{
    "error": {
        "message": "string"
    },
    "result": {
        "task_id": 1
    },
    "successful": true
}

HTTP Status: 400

Content Type: application/json

Response

Property

Type

Description

error

object of type error_response

error response

successful

boolean

always false

error_response

Property

Type

Description

message

string

error message

{
    "error": {
        "message": "string"
    },
    "successful": false
}
Have more questions? Submit a request

Comments