Replace a database's rows
curl --request PUT \
--url https://api.rial.io/v1/databases/{id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"name": "<string>",
"columns": [
"<string>"
],
"rows": [
[
"<string>"
]
],
"identifier_column": "<string>",
"source": "csv"
}
'import requests
url = "https://api.rial.io/v1/databases/{id}"
payload = {
"name": "<string>",
"columns": ["<string>"],
"rows": [["<string>"]],
"identifier_column": "<string>",
"source": "csv"
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.put(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'PUT',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({
name: '<string>',
columns: ['<string>'],
rows: [['<string>']],
identifier_column: '<string>',
source: 'csv'
})
};
fetch('https://api.rial.io/v1/databases/{id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.rial.io/v1/databases/{id}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "PUT",
CURLOPT_POSTFIELDS => json_encode([
'name' => '<string>',
'columns' => [
'<string>'
],
'rows' => [
[
'<string>'
]
],
'identifier_column' => '<string>',
'source' => 'csv'
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.rial.io/v1/databases/{id}"
payload := strings.NewReader("{\n \"name\": \"<string>\",\n \"columns\": [\n \"<string>\"\n ],\n \"rows\": [\n [\n \"<string>\"\n ]\n ],\n \"identifier_column\": \"<string>\",\n \"source\": \"csv\"\n}")
req, _ := http.NewRequest("PUT", url, payload)
req.Header.Add("Authorization", "Bearer <token>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.put("https://api.rial.io/v1/databases/{id}")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"name\": \"<string>\",\n \"columns\": [\n \"<string>\"\n ],\n \"rows\": [\n [\n \"<string>\"\n ]\n ],\n \"identifier_column\": \"<string>\",\n \"source\": \"csv\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.rial.io/v1/databases/{id}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Put.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"name\": \"<string>\",\n \"columns\": [\n \"<string>\"\n ],\n \"rows\": [\n [\n \"<string>\"\n ]\n ],\n \"identifier_column\": \"<string>\",\n \"source\": \"csv\"\n}"
response = http.request(request)
puts response.read_body{
"id": "<string>",
"name": "<string>",
"columns": [
"<string>"
],
"rows": [
[
"<string>"
]
],
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z",
"source": "csv",
"identifier_column": "<string>"
}{
"error": {
"code": "<string>",
"message": "<string>",
"fields": [
{
"path": "<string>",
"message": "<string>"
}
]
}
}{
"error": {
"code": "not_found",
"message": "Resource not found"
}
}{
"error": "storage_unavailable"
}Databases
Replace a database's rows
Replace name, columns and rows under the same id. Templates keep pointing at it; columns are matched by name.
PUT
/
v1
/
databases
/
{id}
Replace a database's rows
curl --request PUT \
--url https://api.rial.io/v1/databases/{id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"name": "<string>",
"columns": [
"<string>"
],
"rows": [
[
"<string>"
]
],
"identifier_column": "<string>",
"source": "csv"
}
'import requests
url = "https://api.rial.io/v1/databases/{id}"
payload = {
"name": "<string>",
"columns": ["<string>"],
"rows": [["<string>"]],
"identifier_column": "<string>",
"source": "csv"
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.put(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'PUT',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({
name: '<string>',
columns: ['<string>'],
rows: [['<string>']],
identifier_column: '<string>',
source: 'csv'
})
};
fetch('https://api.rial.io/v1/databases/{id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.rial.io/v1/databases/{id}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "PUT",
CURLOPT_POSTFIELDS => json_encode([
'name' => '<string>',
'columns' => [
'<string>'
],
'rows' => [
[
'<string>'
]
],
'identifier_column' => '<string>',
'source' => 'csv'
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.rial.io/v1/databases/{id}"
payload := strings.NewReader("{\n \"name\": \"<string>\",\n \"columns\": [\n \"<string>\"\n ],\n \"rows\": [\n [\n \"<string>\"\n ]\n ],\n \"identifier_column\": \"<string>\",\n \"source\": \"csv\"\n}")
req, _ := http.NewRequest("PUT", url, payload)
req.Header.Add("Authorization", "Bearer <token>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.put("https://api.rial.io/v1/databases/{id}")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"name\": \"<string>\",\n \"columns\": [\n \"<string>\"\n ],\n \"rows\": [\n [\n \"<string>\"\n ]\n ],\n \"identifier_column\": \"<string>\",\n \"source\": \"csv\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.rial.io/v1/databases/{id}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Put.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"name\": \"<string>\",\n \"columns\": [\n \"<string>\"\n ],\n \"rows\": [\n [\n \"<string>\"\n ]\n ],\n \"identifier_column\": \"<string>\",\n \"source\": \"csv\"\n}"
response = http.request(request)
puts response.read_body{
"id": "<string>",
"name": "<string>",
"columns": [
"<string>"
],
"rows": [
[
"<string>"
]
],
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z",
"source": "csv",
"identifier_column": "<string>"
}{
"error": {
"code": "<string>",
"message": "<string>",
"fields": [
{
"path": "<string>",
"message": "<string>"
}
]
}
}{
"error": {
"code": "not_found",
"message": "Resource not found"
}
}{
"error": "storage_unavailable"
}Authorizations
Secret API key, created in the dashboard under Settings → API. Send it as Authorization: Bearer rk_secret_… from your server only. Publishable keys (pk_live_…) are for the native SDKs and reach the capture endpoints alone. An unknown key returns 401.
Path Parameters
Database id — stable across re-uploads.
Pattern:
^[A-Za-z0-9_-]{1,64}$Example:
"db_01hz3k9m2q"
Body
application/json
Required string length:
1 - 80Required array length:
1 - 60 elementsRequired string length:
1 - 80Maximum array length:
5000Maximum string length:
4096Required string length:
1 - 80Available options:
csv Response
Table replaced — same id, same created_at, fresh updated_at.
- Option 1
- Option 2
⌘I