Skip to main content
POST
/
api
/
v4
/
projects
/
{projectId}
/
columns
curl -X POST "https://fluar.com/api/v4/projects/proj_550e8400e29b41d4a716446655440000/columns" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"templateId": "ai-text", "header": "Company Research"}'
{
  "success": true,
  "column": {
    "id": "col_abc123def456",
    "header": "Company Research",
    "type": "ai",
    "dataShape": "text",
    "order": 2
  }
}
Create a new column from a template. Call GET /columns/templates first to discover available templates, then POST with the chosen templateId. Requires a Bearer token.
curl -X POST "https://fluar.com/api/v4/projects/proj_550e8400e29b41d4a716446655440000/columns" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"templateId": "ai-text", "header": "Company Research"}'
{
  "success": true,
  "column": {
    "id": "col_abc123def456",
    "header": "Company Research",
    "type": "ai",
    "dataShape": "text",
    "order": 2
  }
}