Skip to main content
POST
/
accounts
/
{account_id}
/
meeting-minutes
Create meeting minutes
curl --request POST \
  --url https://www.useroulette.com/api/v1/accounts/{account_id}/meeting-minutes \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "title": "Due Diligence Call - AI Platform",
  "content": "## Summary\nDeep dive into technical architecture and team background.\n\n## Key Takeaways\n- Strong technical team with ML expertise\n- Clear product-market fit in enterprise segment\n- Requesting $5M Series A\n\n## Next Steps\n- Schedule follow-up with CTO\n- Request customer references\n",
  "company_id": "company-uuid",
  "meeting_date": "2024-01-20T10:00:00Z",
  "attendees": [
    "Partner A",
    "Associate B",
    "Founder CEO",
    "Founder CTO"
  ]
}'
{
  "success": true,
  "data": {
    "meeting_minutes": {
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "account_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "company_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "title": "Initial Call - TechStartup Inc",
      "content": "## Attendees\n- John Doe (Founder)\n- Jane Smith (VC Partner)\n\n## Discussion Points\n- Product roadmap overview\n- Current traction metrics\n- Funding requirements\n",
      "meeting_date": "2023-11-07T05:31:56Z",
      "attendees": [
        "John Doe",
        "Jane Smith"
      ],
      "processed": false,
      "metadata": {},
      "created_at": "2023-11-07T05:31:56Z",
      "updated_at": "2023-11-07T05:31:56Z"
    }
  }
}

Authorizations

Authorization
string
header
required

Path Parameters

account_id
string<uuid>
required

Body

application/json
title
string
required
content
string
required
company_id
string<uuid>
meeting_date
string<date-time>
attendees
string[]
metadata
object

Response

success
boolean
data
object