Skip to main content
POST
/
api
/
v2
/
{teamSlug}
/
{projectId}
/
rows
curl -X POST "https://fluar.com/api/v2/{teamSlug}/{projectId}/rows" \
  -H "Content-Type: application/json" \
  -d '[
    {"Email": "[email protected]", "Company": "Acme"},
    {"Email": "[email protected]", "Company": "Beta"}
  ]'
{
  "success": true,
  "insertedCount": 2,
  "rows": [
    "550e8400-e29b-41d4-a716-446655440000",
    "550e8400-e29b-41d4-a716-446655440001"
  ]
}
Send a JSON array where each object represents a row.
curl -X POST "https://fluar.com/api/v2/{teamSlug}/{projectId}/rows" \
  -H "Content-Type: application/json" \
  -d '[
    {"Email": "[email protected]", "Company": "Acme"},
    {"Email": "[email protected]", "Company": "Beta"}
  ]'
[
  {
    "Email": "[email protected]",
    "Company": "Acme"
  },
  {
    "Email": "[email protected]",
    "Company": "Beta"
  }
]
Max rows per request depends on your plan. See /api-reference/rate-limits.
{
  "success": true,
  "insertedCount": 2,
  "rows": [
    "550e8400-e29b-41d4-a716-446655440000",
    "550e8400-e29b-41d4-a716-446655440001"
  ]
}