curl --request POST \
--url https://api.kapso.ai/platform/v1/db/{table} \
--header 'Content-Type: application/json' \
--header 'X-API-Key: <api-key>' \
--data '
{
"name": "John Doe",
"email": "john@example.com"
}
'{
"data": [
{}
]
}Insert one or more rows into the table.
curl --request POST \
--url https://api.kapso.ai/platform/v1/db/{table} \
--header 'Content-Type: application/json' \
--header 'X-API-Key: <api-key>' \
--data '
{
"name": "John Doe",
"email": "john@example.com"
}
'{
"data": [
{}
]
}Was this page helpful?