curl --request GET \
--url https://www.useroulette.com/api/v1/accounts/{account_id}/meeting-minutes/{meeting_minutes_id} \
--header 'Authorization: Bearer <token>'{
"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"
}
}
}Retrieve a specific meeting minutes record with full content.
curl --request GET \
--url https://www.useroulette.com/api/v1/accounts/{account_id}/meeting-minutes/{meeting_minutes_id} \
--header 'Authorization: Bearer <token>'{
"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"
}
}
}