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"
]
}
'import requests
url = "https://www.useroulette.com/api/v1/accounts/{account_id}/meeting-minutes"
payload = {
"title": "Due Diligence Call - AI Platform",
"content": "## Summary
Deep dive into technical architecture and team background.
## Key Takeaways
- Strong technical team with ML expertise
- Clear product-market fit in enterprise segment
- Requesting $5M Series A
## Next Steps
- Schedule follow-up with CTO
- Request customer references
",
"company_id": "company-uuid",
"meeting_date": "2024-01-20T10:00:00Z",
"attendees": ["Partner A", "Associate B", "Founder CEO", "Founder CTO"]
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({
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']
})
};
fetch('https://www.useroulette.com/api/v1/accounts/{account_id}/meeting-minutes', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://www.useroulette.com/api/v1/accounts/{account_id}/meeting-minutes",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'title' => 'Due Diligence Call - AI Platform',
'content' => '## Summary
Deep dive into technical architecture and team background.
## Key Takeaways
- Strong technical team with ML expertise
- Clear product-market fit in enterprise segment
- Requesting $5M Series A
## Next Steps
- Schedule follow-up with CTO
- Request customer references
',
'company_id' => 'company-uuid',
'meeting_date' => '2024-01-20T10:00:00Z',
'attendees' => [
'Partner A',
'Associate B',
'Founder CEO',
'Founder CTO'
]
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://www.useroulette.com/api/v1/accounts/{account_id}/meeting-minutes"
payload := strings.NewReader("{\n \"title\": \"Due Diligence Call - AI Platform\",\n \"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\",\n \"company_id\": \"company-uuid\",\n \"meeting_date\": \"2024-01-20T10:00:00Z\",\n \"attendees\": [\n \"Partner A\",\n \"Associate B\",\n \"Founder CEO\",\n \"Founder CTO\"\n ]\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Authorization", "Bearer <token>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://www.useroulette.com/api/v1/accounts/{account_id}/meeting-minutes")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"title\": \"Due Diligence Call - AI Platform\",\n \"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\",\n \"company_id\": \"company-uuid\",\n \"meeting_date\": \"2024-01-20T10:00:00Z\",\n \"attendees\": [\n \"Partner A\",\n \"Associate B\",\n \"Founder CEO\",\n \"Founder CTO\"\n ]\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://www.useroulette.com/api/v1/accounts/{account_id}/meeting-minutes")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"title\": \"Due Diligence Call - AI Platform\",\n \"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\",\n \"company_id\": \"company-uuid\",\n \"meeting_date\": \"2024-01-20T10:00:00Z\",\n \"attendees\": [\n \"Partner A\",\n \"Associate B\",\n \"Founder CEO\",\n \"Founder CTO\"\n ]\n}"
response = http.request(request)
puts response.read_body{
"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"
}
}
}{
"success": false,
"error": "Invalid request body",
"data": null
}{
"success": false,
"error": "Invalid or expired API key",
"data": null
}Meeting Minutes
Create meeting minutes
Create a new meeting minutes record. Supports markdown formatting in the content field.
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"
]
}
'import requests
url = "https://www.useroulette.com/api/v1/accounts/{account_id}/meeting-minutes"
payload = {
"title": "Due Diligence Call - AI Platform",
"content": "## Summary
Deep dive into technical architecture and team background.
## Key Takeaways
- Strong technical team with ML expertise
- Clear product-market fit in enterprise segment
- Requesting $5M Series A
## Next Steps
- Schedule follow-up with CTO
- Request customer references
",
"company_id": "company-uuid",
"meeting_date": "2024-01-20T10:00:00Z",
"attendees": ["Partner A", "Associate B", "Founder CEO", "Founder CTO"]
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({
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']
})
};
fetch('https://www.useroulette.com/api/v1/accounts/{account_id}/meeting-minutes', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://www.useroulette.com/api/v1/accounts/{account_id}/meeting-minutes",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'title' => 'Due Diligence Call - AI Platform',
'content' => '## Summary
Deep dive into technical architecture and team background.
## Key Takeaways
- Strong technical team with ML expertise
- Clear product-market fit in enterprise segment
- Requesting $5M Series A
## Next Steps
- Schedule follow-up with CTO
- Request customer references
',
'company_id' => 'company-uuid',
'meeting_date' => '2024-01-20T10:00:00Z',
'attendees' => [
'Partner A',
'Associate B',
'Founder CEO',
'Founder CTO'
]
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://www.useroulette.com/api/v1/accounts/{account_id}/meeting-minutes"
payload := strings.NewReader("{\n \"title\": \"Due Diligence Call - AI Platform\",\n \"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\",\n \"company_id\": \"company-uuid\",\n \"meeting_date\": \"2024-01-20T10:00:00Z\",\n \"attendees\": [\n \"Partner A\",\n \"Associate B\",\n \"Founder CEO\",\n \"Founder CTO\"\n ]\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Authorization", "Bearer <token>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://www.useroulette.com/api/v1/accounts/{account_id}/meeting-minutes")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"title\": \"Due Diligence Call - AI Platform\",\n \"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\",\n \"company_id\": \"company-uuid\",\n \"meeting_date\": \"2024-01-20T10:00:00Z\",\n \"attendees\": [\n \"Partner A\",\n \"Associate B\",\n \"Founder CEO\",\n \"Founder CTO\"\n ]\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://www.useroulette.com/api/v1/accounts/{account_id}/meeting-minutes")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"title\": \"Due Diligence Call - AI Platform\",\n \"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\",\n \"company_id\": \"company-uuid\",\n \"meeting_date\": \"2024-01-20T10:00:00Z\",\n \"attendees\": [\n \"Partner A\",\n \"Associate B\",\n \"Founder CEO\",\n \"Founder CTO\"\n ]\n}"
response = http.request(request)
puts response.read_body{
"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"
}
}
}{
"success": false,
"error": "Invalid request body",
"data": null
}{
"success": false,
"error": "Invalid or expired API key",
"data": null
}Authorizations
API key authentication. Generate keys from your account settings.
Include in header: Authorization: Bearer YOUR_API_KEY
Path Parameters
The unique identifier of the account/team
Body
application/json
⌘I

