cURL
curl --request PATCH \ --url https://www.useroulette.com/api/v1/accounts/{account_id}/meeting-minutes/{meeting_minutes_id} \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data ' { "title": "<string>", "content": "<string>", "company_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a", "meeting_date": "2023-11-07T05:31:56Z", "attendees": [ "<string>" ], "processed": true, "metadata": {} } '
{ "success": true, "data": { "meeting_minutes": { "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a", "account_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a", "title": "Initial Call - TechStartup Inc", "created_at": "2023-11-07T05:31:56Z", "company_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a", "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": {}, "updated_at": "2023-11-07T05:31:56Z" } } }
Update meeting minutes content or metadata.
API key authentication. Generate keys from your account settings.
Include in header: Authorization: Bearer YOUR_API_KEY
Authorization: Bearer YOUR_API_KEY
The unique identifier of the account/team
Meeting minutes updated
Show child attributes