Update a meeting session
Updates mutable properties of a meeting session. Only sessions in the scheduled state can be updated; any other state returns 409 with the invalid_state error code. All request fields are optional, and an empty object is a valid no-op update.
PATCH
/
meeting_sessions
/
{id}
JavaScript
import Telnyx from 'telnyx';
const client = new Telnyx({
apiKey: process.env['TELNYX_API_KEY'], // This is the default and can be omitted
});
const MeetingSession = await client.meetingSessions.update('id', {
join_at: 'join_at',
});
console.log(MeetingSession.data);import os
from telnyx import Telnyx
client = Telnyx(
api_key=os.environ.get("TELNYX_API_KEY"), # This is the default and can be omitted
)
meeting_session = client.meeting_sessions.update(
id="id",
join_at="join_at",
)
print(meeting_session.data)
package main
import (
"context"
"fmt"
"github.com/team-telnyx/telnyx-go"
"github.com/team-telnyx/telnyx-go/option"
)
func main() {
client := telnyx.NewClient(
option.WithAPIKey("My API Key"),
)
meetingSession, err := client.MeetingSessions.Update(
context.TODO(),
"id",
telnyx.MeetingSessionUpdateParams{
JoinAt: telnyx.String("join_at"),
},
)
if err != nil {
panic(err.Error())
}
fmt.Printf("%+v\n", meetingSession.Data)
}
package com.telnyx.sdk.example;
import com.telnyx.sdk.client.TelnyxClient;
import com.telnyx.sdk.client.okhttp.TelnyxOkHttpClient;
import com.telnyx.sdk.models.meetingSessions.MeetingSessionUpdateParams;
public final class Main {
private Main() {}
public static void main(String[] args) {
TelnyxClient client = TelnyxOkHttpClient.fromEnv();
MeetingSessionUpdateParams params = MeetingSessionUpdateParams.builder()
.joinAt("join_at")
.build();
var response = client.meetingSessions().update("id", params);
}
}require "telnyx"
telnyx = Telnyx::Client.new(api_key: "My API Key")
meeting_session = telnyx.meeting_sessions.update("id", join_at: "join_at")
puts(meeting_session)<?php
require_once dirname(__DIR__) . '/vendor/autoload.php';
use Telnyx\Client;
use Telnyx\Core\Exceptions\APIException;
$client = new Client(apiKey: getenv('TELNYX_API_KEY') ?: 'My API Key');
try {
$meeting_session = $client->meetingSessions->update(
'id',
join_at: 'join_at',
);
var_dump($meeting_session);
} catch (APIException $e) {
echo $e->getMessage();
}telnyx meeting-sessions update \
--api-key 'My API Key' \
--id id \
--join-at join_atcurl --request PATCH \
--url https://api.telnyx.com/v2/meeting_sessions/{id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"join_at": "2026-08-05T17:00:00Z"
}
'{
"data": {
"id": "mtgsess_9b2f...",
"account_id": "22",
"provider": "recall",
"status": "scheduled",
"status_detail": null,
"recording": false,
"meeting_url": "https://meet.google.com/abc-defg-hij",
"platform": "google_meet",
"bot_name": "Notetaker",
"config": {
"voice": null,
"speak_on_enter": null,
"barge_in": false,
"summarize_on_end": true
},
"avatar": null,
"avatar_state": null,
"avatar_state_changed_at": null,
"assistant": null,
"assistant_state": null,
"assistant_state_changed_at": null,
"webhook_url": null,
"metadata": {},
"failure_reason": null,
"created_at": "2026-06-16T08:58:00Z",
"join_at": "2026-08-05T17:00:00Z",
"joined_at": null,
"ended_at": null,
"updated_at": "2026-06-16T09:00:00Z"
}
}{
"error": {
"code": "invalid_request",
"message": "request is invalid"
}
}{
"error": {
"code": "unauthorized",
"message": "invalid or missing credentials"
}
}{
"error": {
"code": "forbidden",
"message": "credential is not permitted"
}
}{
"error": {
"code": "not_found",
"message": "meeting session not found"
}
}{
"error": {
"code": "invalid_state",
"message": "only scheduled sessions can be updated"
}
}{
"error": {
"code": "invalid_request",
"message": "request body too large"
}
}{
"error": {
"code": "auth_overloaded",
"message": "authentication temporarily overloaded"
}
}{
"error": {
"code": "internal_error",
"message": "internal server error"
}
}{
"error": {
"code": "provider_error",
"message": "meeting provider rejected session update"
}
}{
"error": {
"code": "not_configured",
"message": "required feature is not configured"
}
}Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Path Parameters
Unique identifier for the meeting session.
Example:
"mtgsess_a1b2c3d4-e5f6-7890-abcd-ef1234567890"
Body
application/json
Response
Successful response with the updated meeting session.
Represents a meeting session. All serializer fields are present and required; nullable fields use null when absent. No actor, provider-bot, idempotency, routing, key, or internal fields are exposed.
Show child attributes
Show child attributes
Was this page helpful?
JavaScript
import Telnyx from 'telnyx';
const client = new Telnyx({
apiKey: process.env['TELNYX_API_KEY'], // This is the default and can be omitted
});
const MeetingSession = await client.meetingSessions.update('id', {
join_at: 'join_at',
});
console.log(MeetingSession.data);import os
from telnyx import Telnyx
client = Telnyx(
api_key=os.environ.get("TELNYX_API_KEY"), # This is the default and can be omitted
)
meeting_session = client.meeting_sessions.update(
id="id",
join_at="join_at",
)
print(meeting_session.data)
package main
import (
"context"
"fmt"
"github.com/team-telnyx/telnyx-go"
"github.com/team-telnyx/telnyx-go/option"
)
func main() {
client := telnyx.NewClient(
option.WithAPIKey("My API Key"),
)
meetingSession, err := client.MeetingSessions.Update(
context.TODO(),
"id",
telnyx.MeetingSessionUpdateParams{
JoinAt: telnyx.String("join_at"),
},
)
if err != nil {
panic(err.Error())
}
fmt.Printf("%+v\n", meetingSession.Data)
}
package com.telnyx.sdk.example;
import com.telnyx.sdk.client.TelnyxClient;
import com.telnyx.sdk.client.okhttp.TelnyxOkHttpClient;
import com.telnyx.sdk.models.meetingSessions.MeetingSessionUpdateParams;
public final class Main {
private Main() {}
public static void main(String[] args) {
TelnyxClient client = TelnyxOkHttpClient.fromEnv();
MeetingSessionUpdateParams params = MeetingSessionUpdateParams.builder()
.joinAt("join_at")
.build();
var response = client.meetingSessions().update("id", params);
}
}require "telnyx"
telnyx = Telnyx::Client.new(api_key: "My API Key")
meeting_session = telnyx.meeting_sessions.update("id", join_at: "join_at")
puts(meeting_session)<?php
require_once dirname(__DIR__) . '/vendor/autoload.php';
use Telnyx\Client;
use Telnyx\Core\Exceptions\APIException;
$client = new Client(apiKey: getenv('TELNYX_API_KEY') ?: 'My API Key');
try {
$meeting_session = $client->meetingSessions->update(
'id',
join_at: 'join_at',
);
var_dump($meeting_session);
} catch (APIException $e) {
echo $e->getMessage();
}telnyx meeting-sessions update \
--api-key 'My API Key' \
--id id \
--join-at join_atcurl --request PATCH \
--url https://api.telnyx.com/v2/meeting_sessions/{id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"join_at": "2026-08-05T17:00:00Z"
}
'{
"data": {
"id": "mtgsess_9b2f...",
"account_id": "22",
"provider": "recall",
"status": "scheduled",
"status_detail": null,
"recording": false,
"meeting_url": "https://meet.google.com/abc-defg-hij",
"platform": "google_meet",
"bot_name": "Notetaker",
"config": {
"voice": null,
"speak_on_enter": null,
"barge_in": false,
"summarize_on_end": true
},
"avatar": null,
"avatar_state": null,
"avatar_state_changed_at": null,
"assistant": null,
"assistant_state": null,
"assistant_state_changed_at": null,
"webhook_url": null,
"metadata": {},
"failure_reason": null,
"created_at": "2026-06-16T08:58:00Z",
"join_at": "2026-08-05T17:00:00Z",
"joined_at": null,
"ended_at": null,
"updated_at": "2026-06-16T09:00:00Z"
}
}{
"error": {
"code": "invalid_request",
"message": "request is invalid"
}
}{
"error": {
"code": "unauthorized",
"message": "invalid or missing credentials"
}
}{
"error": {
"code": "forbidden",
"message": "credential is not permitted"
}
}{
"error": {
"code": "not_found",
"message": "meeting session not found"
}
}{
"error": {
"code": "invalid_state",
"message": "only scheduled sessions can be updated"
}
}{
"error": {
"code": "invalid_request",
"message": "request body too large"
}
}{
"error": {
"code": "auth_overloaded",
"message": "authentication temporarily overloaded"
}
}{
"error": {
"code": "internal_error",
"message": "internal server error"
}
}{
"error": {
"code": "provider_error",
"message": "meeting provider rejected session update"
}
}{
"error": {
"code": "not_configured",
"message": "required feature is not configured"
}
}