curl --request POST \
--url https://your-synthbrew-server.com/api/runtime/{sourceId}/{table} \
--header 'Content-Type: application/json' \
--header 'x-api-key: <api-key>' \
--data '
{
"id": 2,
"name": "Beta",
"active": true
}
'{}Inserts a record into the target table and returns the inserted row.
curl --request POST \
--url https://your-synthbrew-server.com/api/runtime/{sourceId}/{table} \
--header 'Content-Type: application/json' \
--header 'x-api-key: <api-key>' \
--data '
{
"id": 2,
"name": "Beta",
"active": true
}
'{}Source API key created under /api/sources/:sourceId/api-keys
Source UUID. For runtime endpoints this identifies the source backing the table; for public v1 it identifies the source resource inside the project.
Runtime table identifier (usually the schema entity ID used in Synthbrew).
Dynamic runtime row. Shape depends on the source schema/table.
Created runtime row
Dynamic runtime row. Shape depends on the source schema/table.