Skip to main content
POST
/
api
/
v2
/
{teamSlug}
/
{projectId}
/
rows
/
{rowId}
curl -X POST "https://fluar.com/api/v2/{teamSlug}/{projectId}/rows/{rowId}" \
  -H "Content-Type: application/json" \
  -d '{
    "Company": "Updated Company",
    "Email": "[email protected]"
  }'
{
  "success": true,
  "updatedCount": 2,
  "rowId": "550e8400-e29b-41d4-a716-446655440000"
}
Send a JSON object where keys match existing column names. Only the provided fields are updated.
curl -X POST "https://fluar.com/api/v2/{teamSlug}/{projectId}/rows/{rowId}" \
  -H "Content-Type: application/json" \
  -d '{
    "Company": "Updated Company",
    "Email": "[email protected]"
  }'
{
  "Company": "Updated Company",
  "Email": "[email protected]"
}
Unknown columns are rejected. Replace {rowId} with the row UUID returned from insert.
{
  "success": true,
  "updatedCount": 2,
  "rowId": "550e8400-e29b-41d4-a716-446655440000"
}