Default
Last updated
Last updated
POST /api/v1/servers HTTP/1.1
Host:
Content-Type: application/json
Accept: */*
Content-Length: 57
{
"accessKey": "text",
"secretKey": "text",
"username": "text"
}{
"token": "text",
"username": "text",
"message": "text",
"bucketName": "text",
"bucketRegion": "text",
"tags": {},
"groupMembership": "text"
}GET /api/v1/servers/ping HTTP/1.1
Host:
Authorization: text
Accept: */*
{
"status": "text",
"message": "text",
"username": "text",
"bucketName": "text",
"region": "text"
}POST /api/v1/servers/shutdown HTTP/1.1
Host:
Authorization: text
Accept: */*
{
"message": "text"
}GET /api/v1/databases HTTP/1.1
Host:
Authorization: text
Accept: */*
{
"databases": [
"text"
],
"count": 1
}POST /api/v1/databases HTTP/1.1
Host:
Authorization: text
Content-Type: application/json
Accept: */*
Content-Length: 15
{
"name": "text"
}{
"message": "text",
"name": "text"
}GET /api/v1/databases/{name} HTTP/1.1
Host:
Authorization: text
Accept: */*
{
"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: */*
{
"message": "text",
"name": "text"
}POST /api/v1/query HTTP/1.1
Host:
Authorization: text
Content-Type: application/json
Accept: */*
Content-Length: 36
{
"sql": "text",
"parameters": [
"text"
]
}{
"columns": [
"text"
],
"rows": [
[
"text"
]
]
}GET /api/replication/table_syncs_v1 HTTP/1.1
Host:
Authorization: text
Accept: */*
{
"databases": [
{
"id": "text",
"name": "text",
"source": {
"credentials": {}
},
"destination": {
"credentials": {}
},
"tables": [
{
"id": "text",
"source_details": {},
"destination_details": {}
}
]
}
]
}POST /api/replication/table_syncs_v1 HTTP/1.1
Host:
Authorization: text
Content-Type: application/json
Accept: */*
Content-Length: 41
{
"tableSyncId": "text",
"incremental": true
}{}