curl --request POST \
--url https://api.example.com/tables/{table_id}/rows \
--header 'Content-Type: application/json' \
--cookie fastapiusersauth= \
--data '
{
"data": {},
"upsert": false,
"natural_keys": [
"<string>"
]
}
'{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>"
}
]
}Create a new row in a table.
curl --request POST \
--url https://api.example.com/tables/{table_id}/rows \
--header 'Content-Type: application/json' \
--cookie fastapiusersauth= \
--data '
{
"data": {},
"upsert": false,
"natural_keys": [
"<string>"
]
}
'{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>"
}
]
}Successful Response
Was this page helpful?