room information updated
curl --request GET \
--url https://apix.us.amity.co/realtime/room.didUpdateimport requests
url = "https://apix.us.amity.co/realtime/room.didUpdate"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://apix.us.amity.co/realtime/room.didUpdate', 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://apix.us.amity.co/realtime/room.didUpdate",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://apix.us.amity.co/realtime/room.didUpdate"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://apix.us.amity.co/realtime/room.didUpdate")
.asString();require 'uri'
require 'net/http'
url = URI("https://apix.us.amity.co/realtime/room.didUpdate")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body{
"data": {
"rooms": [
{
"_id": "690c6a641b055f909ff1c8e1",
"roomId": "690c6a641b055f909ff1c8e1",
"path": "606f37a0ae601e3c33eba9e3/room/690c6a641b055f909ff1c8e1",
"title": "e4920036-3dd4-4fc3-958c-072d520ba716",
"liveChatEnabled": true,
"childRoomIds": [],
"participants": [
{
"userId": "teste2c39fe5-d5fc-4943-a9be-cf54ad4d0825",
"type": "host"
}
],
"createdBy": "teste2c39fe5-d5fc-4943-a9be-cf54ad4d0825",
"type": "directStreaming",
"status": "live",
"liveAt": "2025-11-06T09:52:35.917Z",
"isDeleted": false,
"createdAt": "2025-11-06T09:29:08.260Z",
"updatedAt": "2025-11-06T09:55:00.000Z",
"creatorInternalId": "690c6a0bfb181288c0325726",
"livePlaybackUrl": "https://stream.mux.com/bD02uiCium1GTisHi4V2ifIPA1ZrGlzZKDck2IC2Drnc.m3u8?token=eyJhbGci...",
"liveThumbnailUrl": "https://image.mux.com/bD02uiCium1GTisHi4V2ifIPA1ZrGlzZKDck2IC2Drnc/thumbnail.png?token=eyJhbGci...",
"recordedPlaybackInfos": []
}
],
"users": [
{
"_id": "690c6a0bfb181288c0325726",
"path": "606f37a0ae601e3c33eba9e3/user/690c6a0bfb181288c0325726",
"displayName": "Stamm - O'Reilly",
"userId": "teste2c39fe5-d5fc-4943-a9be-cf54ad4d0825"
}
],
"files": []
},
"eventType": "room.didUpdate",
"id": "690c6a641b055f909ff1c8e1",
"networkId": "606f37a0ae601e3c33eba9e3",
"path": "606f37a0ae601e3c33eba9e3/room/690c6a641b055f909ff1c8e1",
"senderId": "asc-app-c1-588c759896-pmzz8-1",
"sentTime": "2025-11-06T09:55:00.123Z",
"version": 1
}Realtime event
room information updated
GET
/
realtime
/
room.didUpdate
room information updated
curl --request GET \
--url https://apix.us.amity.co/realtime/room.didUpdateimport requests
url = "https://apix.us.amity.co/realtime/room.didUpdate"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://apix.us.amity.co/realtime/room.didUpdate', 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://apix.us.amity.co/realtime/room.didUpdate",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://apix.us.amity.co/realtime/room.didUpdate"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://apix.us.amity.co/realtime/room.didUpdate")
.asString();require 'uri'
require 'net/http'
url = URI("https://apix.us.amity.co/realtime/room.didUpdate")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body{
"data": {
"rooms": [
{
"_id": "690c6a641b055f909ff1c8e1",
"roomId": "690c6a641b055f909ff1c8e1",
"path": "606f37a0ae601e3c33eba9e3/room/690c6a641b055f909ff1c8e1",
"title": "e4920036-3dd4-4fc3-958c-072d520ba716",
"liveChatEnabled": true,
"childRoomIds": [],
"participants": [
{
"userId": "teste2c39fe5-d5fc-4943-a9be-cf54ad4d0825",
"type": "host"
}
],
"createdBy": "teste2c39fe5-d5fc-4943-a9be-cf54ad4d0825",
"type": "directStreaming",
"status": "live",
"liveAt": "2025-11-06T09:52:35.917Z",
"isDeleted": false,
"createdAt": "2025-11-06T09:29:08.260Z",
"updatedAt": "2025-11-06T09:55:00.000Z",
"creatorInternalId": "690c6a0bfb181288c0325726",
"livePlaybackUrl": "https://stream.mux.com/bD02uiCium1GTisHi4V2ifIPA1ZrGlzZKDck2IC2Drnc.m3u8?token=eyJhbGci...",
"liveThumbnailUrl": "https://image.mux.com/bD02uiCium1GTisHi4V2ifIPA1ZrGlzZKDck2IC2Drnc/thumbnail.png?token=eyJhbGci...",
"recordedPlaybackInfos": []
}
],
"users": [
{
"_id": "690c6a0bfb181288c0325726",
"path": "606f37a0ae601e3c33eba9e3/user/690c6a0bfb181288c0325726",
"displayName": "Stamm - O'Reilly",
"userId": "teste2c39fe5-d5fc-4943-a9be-cf54ad4d0825"
}
],
"files": []
},
"eventType": "room.didUpdate",
"id": "690c6a641b055f909ff1c8e1",
"networkId": "606f37a0ae601e3c33eba9e3",
"path": "606f37a0ae601e3c33eba9e3/room/690c6a641b055f909ff1c8e1",
"senderId": "asc-app-c1-588c759896-pmzz8-1",
"sentTime": "2025-11-06T09:55:00.123Z",
"version": 1
}Response
200 - application/json
RTE data for room.didUpdate event
The room ID
Example:
"690c6a641b055f909ff1c8e1"
Show child attributes
Show child attributes
ID of the network.
A topic path for subscription.
Name of the event.
ID of sender node.
The date/time when event was sent.
Version of API
⌘I