Skip to main content
PATCH
/
v1
/
meetings
/
{id}
Update a meeting
curl --request PATCH \
  --url https://api.slant.app/v1/meetings/{id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "title": "Updated meeting title",
  "notepad": "## Agenda\\n\\n- Review portfolio",
  "meeting_type": "client_review",
  "household_ids": [
    "<string>"
  ]
}
'
import requests

url = "https://api.slant.app/v1/meetings/{id}"

payload = {
    "title": "Updated meeting title",
    "notepad": "## Agenda\n\n- Review portfolio",
    "meeting_type": "client_review",
    "household_ids": ["<string>"]
}
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: 'Updated meeting title',
    notepad: '## Agenda\n\n- Review portfolio',
    meeting_type: 'client_review',
    household_ids: ['<string>']
  })
};

fetch('https://api.slant.app/v1/meetings/{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://api.slant.app/v1/meetings/{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' => 'Updated meeting title',
    'notepad' => '## Agenda\\n\\n- Review portfolio',
    'meeting_type' => 'client_review',
    'household_ids' => [
        '<string>'
    ]
  ]),
  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://api.slant.app/v1/meetings/{id}"

	payload := strings.NewReader("{\n  \"title\": \"Updated meeting title\",\n  \"notepad\": \"## Agenda\\\\n\\\\n- Review portfolio\",\n  \"meeting_type\": \"client_review\",\n  \"household_ids\": [\n    \"<string>\"\n  ]\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://api.slant.app/v1/meetings/{id}")
  .header("Authorization", "Bearer <token>")
  .header("Content-Type", "application/json")
  .body("{\n  \"title\": \"Updated meeting title\",\n  \"notepad\": \"## Agenda\\\\n\\\\n- Review portfolio\",\n  \"meeting_type\": \"client_review\",\n  \"household_ids\": [\n    \"<string>\"\n  ]\n}")
  .asString();
require 'uri'
require 'net/http'

url = URI("https://api.slant.app/v1/meetings/{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\": \"Updated meeting title\",\n  \"notepad\": \"## Agenda\\\\n\\\\n- Review portfolio\",\n  \"meeting_type\": \"client_review\",\n  \"household_ids\": [\n    \"<string>\"\n  ]\n}"

response = http.request(request)
puts response.read_body
{
  "id": "<string>",
  "title": "<string>",
  "book_id": "<string>",
  "households": [
    {
      "id": "<string>",
      "name": "<string>"
    }
  ],
  "has_transcript": true,
  "has_recordings": true,
  "created_at": "2023-11-07T05:31:56Z",
  "updated_at": "2023-11-07T05:31:56Z",
  "start_time": "2023-11-07T05:31:56Z",
  "end_time": "2023-11-07T05:31:56Z",
  "duration_seconds": 123,
  "meeting_link": "<string>",
  "meeting_type": "<string>",
  "users": [
    {
      "id": "<string>",
      "email": "<string>",
      "first_name": "<string>",
      "last_name": "<string>"
    }
  ],
  "quick_summary": "<string>",
  "ai_summary": "<string>",
  "notepad": "<string>",
  "transcript": "<array>",
  "event_participants": "<array>"
}
{
  "error": "invalid_json",
  "detail": "<string>"
}
{
  "detail": "<string>"
}
{
  "error": "record_not_found",
  "detail": "<string>"
}

Authorizations

Authorization
string
header
required

OAuth 2.0 Bearer Token from Clerk authentication

Headers

Idempotency-Key
string

Unique key to ensure idempotent request handling. If a request with the same key was already processed, the original response will be returned.

Path Parameters

id
string
required

The meeting ID

Body

application/json
title
string

Meeting title

Example:

"Updated meeting title"

notepad
string

Meeting notes (markdown). Pass null or an empty string to clear.

Example:

"## Agenda\\n\\n- Review portfolio"

meeting_type
string

Meeting type. Must be an active meeting type key for the company (defaults: other, prospect, client_review, client_check_in, internal, coi).

Example:

"client_review"

household_ids
string[]

Household IDs to link to this meeting. Replaces the full set of linked households; pass an empty array to unlink all.

Response

meeting updated

id
string
required
title
string
required
book_id
string
required
households
object[]
required
has_transcript
boolean
required
has_recordings
boolean
required
created_at
string<date-time>
required
updated_at
string<date-time>
required
start_time
string<date-time> | null
end_time
string<date-time> | null
duration_seconds
integer
meeting_source
enum<string> | null
Available options:
instant,
calendar_event,
imported,
logged
meeting_type
string
users
object[]
quick_summary
string | null
ai_summary
string | null
notepad
string | null
transcript
array | null
event_participants
array | null