Skip to main content
POST
/
api
/
v4
/
projects
/
{projectId}
/
trigger
curl -X POST "https://fluar.com/api/v4/projects/proj_550e8400e29b41d4a716446655440000/trigger" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"rowIds": ["row_aaa", "row_bbb"], "force": true}'
{
  "success": true,
  "triggeredCount": 2
}
Trigger processing for rows. Optionally specify row IDs and column IDs. Requires a Bearer token.
curl -X POST "https://fluar.com/api/v4/projects/proj_550e8400e29b41d4a716446655440000/trigger" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"rowIds": ["row_aaa", "row_bbb"], "force": true}'
{
  "success": true,
  "triggeredCount": 2
}