Categories

Workflow Categories

Workflows are organized into categories based on legal practice areas:

Litigation Workflows

  • Personal injury case intake and document processing
  • Commercial litigation discovery automation
  • Employment dispute resolution workflows
  • Intellectual property management processes

Regulatory Workflows

  • Financial services compliance monitoring
  • Healthcare regulatory document processing
  • Environmental compliance reporting
  • Banking regulation automation

Transactional Workflows

  • Contract review and analysis automation
  • Real estate transaction processing
  • Financing document workflows
  • Software licensing and agreements

Corporate Workflows

  • Corporate governance document management
  • M&A due diligence automation
  • Employment agreement processing
  • Board meeting preparation workflows

Workflow Types

  • document-processing (528): Multi-step document analysis and processing
  • case-intake (165): Automated case intake and initial review
  • compliance (89): Regulatory compliance monitoring and reporting
  • transactional (58): Contract and transaction processing

Common Use Cases

Use Case 1: Deposition Processing Workflow

# 1. Search for workflow
curl -X POST https://api.case.dev/workflows/v1/search \
  -H "Authorization: Bearer sk_case_your_api_key" \
  -d '{"query": "deposition processing", "limit": 1}'

# 2. Execute workflow
curl -X POST https://api.case.dev/workflows/v1/{id}/execute \
  -H "Authorization: Bearer sk_case_your_api_key" \
  -d '{
    "input": {
      "audio_url": "https://s3.../deposition.mp3",
      "generate_summary": true,
      "extract_key_points": true
    }
  }'

Use Case 2: Contract Review Workflow

curl -X POST https://api.case.dev/workflows/v1/{id}/execute \
  -H "Authorization: Bearer sk_case_your_api_key" \
  -d '{
    "input": {
      "document_url": "https://s3.../contract.pdf",
      "review_type": "comprehensive",
      "generate_summary": true
    }
  }'

Use Case 3: Compliance Monitoring Workflow

curl -X POST https://api.case.dev/workflows/v1/{id}/execute \
  -H "Authorization: Bearer sk_case_your_api_key" \
  -d '{
    "input": {
      "documents": ["https://s3.../policy.pdf", "https://s3.../procedures.pdf"],
      "compliance_framework": "SOX",
      "generate_report": true
    }
  }'