Update meeting minutes
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": {}
}
'import requests
url = "https://www.useroulette.com/api/v1/accounts/{account_id}/meeting-minutes/{meeting_minutes_id}"
payload = {
"title": "<string>",
"content": "<string>",
"company_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"meeting_date": "2023-11-07T05:31:56Z",
"attendees": ["<string>"],
"processed": True,
"metadata": {}
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.patch(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'PATCH',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({
title: '<string>',
content: '<string>',
company_id: '3c90c3cc-0d44-4b50-8888-8dd25736052a',
meeting_date: '2023-11-07T05:31:56Z',
attendees: ['<string>'],
processed: true,
metadata: {}
})
};
fetch('https://www.useroulette.com/api/v1/accounts/{account_id}/meeting-minutes/{meeting_minutes_id}', 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/{meeting_minutes_id}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "PATCH",
CURLOPT_POSTFIELDS => json_encode([
'title' => '<string>',
'content' => '<string>',
'company_id' => '3c90c3cc-0d44-4b50-8888-8dd25736052a',
'meeting_date' => '2023-11-07T05:31:56Z',
'attendees' => [
'<string>'
],
'processed' => true,
'metadata' => [
]
]),
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/{meeting_minutes_id}"
payload := strings.NewReader("{\n \"title\": \"<string>\",\n \"content\": \"<string>\",\n \"company_id\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"meeting_date\": \"2023-11-07T05:31:56Z\",\n \"attendees\": [\n \"<string>\"\n ],\n \"processed\": true,\n \"metadata\": {}\n}")
req, _ := http.NewRequest("PATCH", 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.patch("https://www.useroulette.com/api/v1/accounts/{account_id}/meeting-minutes/{meeting_minutes_id}")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"title\": \"<string>\",\n \"content\": \"<string>\",\n \"company_id\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"meeting_date\": \"2023-11-07T05:31:56Z\",\n \"attendees\": [\n \"<string>\"\n ],\n \"processed\": true,\n \"metadata\": {}\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://www.useroulette.com/api/v1/accounts/{account_id}/meeting-minutes/{meeting_minutes_id}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Patch.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"title\": \"<string>\",\n \"content\": \"<string>\",\n \"company_id\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"meeting_date\": \"2023-11-07T05:31:56Z\",\n \"attendees\": [\n \"<string>\"\n ],\n \"processed\": true,\n \"metadata\": {}\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
}{
"success": false,
"error": "Resource not found",
"data": null
}Meeting Minutes
Update meeting minutes
Update meeting minutes content or metadata.
PATCH
/
accounts
/
{account_id}
/
meeting-minutes
/
{meeting_minutes_id}
Update meeting minutes
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": {}
}
'import requests
url = "https://www.useroulette.com/api/v1/accounts/{account_id}/meeting-minutes/{meeting_minutes_id}"
payload = {
"title": "<string>",
"content": "<string>",
"company_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"meeting_date": "2023-11-07T05:31:56Z",
"attendees": ["<string>"],
"processed": True,
"metadata": {}
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.patch(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'PATCH',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({
title: '<string>',
content: '<string>',
company_id: '3c90c3cc-0d44-4b50-8888-8dd25736052a',
meeting_date: '2023-11-07T05:31:56Z',
attendees: ['<string>'],
processed: true,
metadata: {}
})
};
fetch('https://www.useroulette.com/api/v1/accounts/{account_id}/meeting-minutes/{meeting_minutes_id}', 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/{meeting_minutes_id}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "PATCH",
CURLOPT_POSTFIELDS => json_encode([
'title' => '<string>',
'content' => '<string>',
'company_id' => '3c90c3cc-0d44-4b50-8888-8dd25736052a',
'meeting_date' => '2023-11-07T05:31:56Z',
'attendees' => [
'<string>'
],
'processed' => true,
'metadata' => [
]
]),
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/{meeting_minutes_id}"
payload := strings.NewReader("{\n \"title\": \"<string>\",\n \"content\": \"<string>\",\n \"company_id\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"meeting_date\": \"2023-11-07T05:31:56Z\",\n \"attendees\": [\n \"<string>\"\n ],\n \"processed\": true,\n \"metadata\": {}\n}")
req, _ := http.NewRequest("PATCH", 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.patch("https://www.useroulette.com/api/v1/accounts/{account_id}/meeting-minutes/{meeting_minutes_id}")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"title\": \"<string>\",\n \"content\": \"<string>\",\n \"company_id\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"meeting_date\": \"2023-11-07T05:31:56Z\",\n \"attendees\": [\n \"<string>\"\n ],\n \"processed\": true,\n \"metadata\": {}\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://www.useroulette.com/api/v1/accounts/{account_id}/meeting-minutes/{meeting_minutes_id}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Patch.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"title\": \"<string>\",\n \"content\": \"<string>\",\n \"company_id\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"meeting_date\": \"2023-11-07T05:31:56Z\",\n \"attendees\": [\n \"<string>\"\n ],\n \"processed\": true,\n \"metadata\": {}\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
}{
"success": false,
"error": "Resource not found",
"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

