Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.lfautomatiza.com/llms.txt

Use this file to discover all available pages before exploring further.

Cada card pode ter uma lista de tarefas. Útil pra acompanhar etapas de qualificação, documentos pendentes, follow-ups ou onboarding.

Endpoints

MétodoEndpointDescrição
POST/kanban_items/:id/create_checklist_itemCria tarefa
GET/kanban_items/:id/get_checklistLista tarefas
PATCH/kanban_items/:id/update_checklist_itemEdita tarefa
POST/kanban_items/:id/toggle_checklist_itemMarca/desmarca conclusão
DELETE/kanban_items/:id/delete_checklist_itemExclui tarefa
POST/kanban_items/:id/assign_agent_to_checklist_itemAtribui agente
DELETE/kanban_items/:id/remove_agent_from_checklist_itemRemove agente
POST/kanban_items/:id/duplicate_checklistDuplica checklist pra outro card
GET/kanban_items/:id/search_checklistBusca textual
GET/kanban_items/:id/checklist_progress_by_agentProgresso por agente

Criar tarefa

curl -X POST https://chat.lfautomatiza.com/api/v1/accounts/1/kanban_items/101/create_checklist_item \
  -H "api_access_token: $TOKEN" \
  -H "Content-Type: application/json" \
  -d '{
    "text": "Enviar contrato pra assinatura",
    "due_date": "2026-05-25",
    "priority": "high",
    "agent_id": 7
  }'
CampoTipoDescrição
textstringDescrição da tarefa
due_datedate (ISO)Prazo (opcional)
priorityenumlow / medium / high / urgent
agent_idintegerAgente responsável

Marcar como concluída

curl -X POST https://chat.lfautomatiza.com/api/v1/accounts/1/kanban_items/101/toggle_checklist_item \
  -H "api_access_token: $TOKEN" \
  -H "Content-Type: application/json" \
  -d '{ "checklist_item_id": 55 }'
O endpoint é toggle — se está aberto, fecha; se está fechado, reabre.

Duplicar checklist pra outro card

Quando você cria um template de processo (ex: “Onboarding cliente novo”):
curl -X POST https://chat.lfautomatiza.com/api/v1/accounts/1/kanban_items/101/duplicate_checklist \
  -H "api_access_token: $TOKEN" \
  -H "Content-Type: application/json" \
  -d '{
    "target_item_id": 202,
    "merge": false
  }'
CampoComportamento
target_item_idCard que receberá a checklist
merge: falseSubstitui checklist do destino
merge: trueAdiciona itens à checklist existente

Progresso por agente

curl https://chat.lfautomatiza.com/api/v1/accounts/1/kanban_items/101/checklist_progress_by_agent \
  -H "api_access_token: $TOKEN"
Retorna quantas tarefas cada agente tem atribuídas e quantas já completou — útil pra dashboards de produtividade.