POST /api/v1/servers/shutdown HTTP/1.1 Host: Authorization: text Accept: */*
Server shutdown
{ "message": "text" }
GET /api/v1/databases HTTP/1.1 Host: Authorization: text Accept: */*
List of databases
{ "databases": [ "text" ], "count": 1 }
GET /api/v1/databases/{name} HTTP/1.1 Host: Authorization: text Accept: */*
Database information
{ "id": "text", "name": "text", "createdAt": "text", "lastAccessed": "text", "lastSynced": "text", "sizeBytes": 1, "isAttached": true, "local": true, "schemas": {} }
DELETE /api/v1/databases/{name} HTTP/1.1 Host: Authorization: text Accept: */*
Database deleted
{ "message": "text", "name": "text" }
GET /api/replication/table_syncs_v1 HTTP/1.1 Host: Authorization: text Accept: */*
Table syncs grouped by replication
{ "databases": [ { "id": "text", "name": "text", "source": { "credentials": {} }, "destination": { "credentials": {} }, "tables": [ { "id": "text", "source_details": {}, "destination_details": {} } ] } ] }
GET /api/v1/servers/ping HTTP/1.1 Host: Authorization: text Accept: */*
Server health status
{ "status": "text", "message": "text", "username": "text", "bucketName": "text", "region": "text" }
POST /api/v1/servers HTTP/1.1 Host: Content-Type: application/json Accept: */* Content-Length: 57 { "accessKey": "text", "secretKey": "text", "username": "text" }
Token created
{ "token": "text", "username": "text", "message": "text", "bucketName": "text", "bucketRegion": "text", "tags": {}, "groupMembership": "text" }
POST /api/v1/databases HTTP/1.1 Host: Authorization: text Content-Type: application/json Accept: */* Content-Length: 15 { "name": "text" }
Database created
POST /api/v1/query HTTP/1.1 Host: Authorization: text Content-Type: application/json Accept: */* Content-Length: 36 { "sql": "text", "parameters": [ "text" ] }
Query result
{ "columns": [ "text" ], "rows": [ [ "text" ] ] }
POST /api/replication/table_syncs_v1 HTTP/1.1 Host: Authorization: text Content-Type: application/json Accept: */* Content-Length: 41 { "tableSyncId": "text", "incremental": true }
Table sync triggered
{}