Authorizations
Body
application/json
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",
"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"
}
}
}Update meeting minutes content or metadata.
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",
"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"
}
}
}