Server SDKs
Build AI agents, control calls, send messages, and more
Retrieve a single room recording by its unique identifier.
format: "uuid"
>=0
1{2 "id": "c22d24f6-5a47-4597-9a23-c7d01e696b92",3 "room_session_id": "a1b2c3d4-5e6f-7890-abcd-ef1234567890",4 "status": "completed",5 "started_at": "2022-01-01T10:00:00Z",6 "finished_at": "2022-01-01T11:00:00Z",7 "duration": 120,8 "size_in_bytes": 20971520,9 "format": "video/mp4",10 "cost_in_dollars": 0.05,11 "uri": "https://files.signalwire.com/temporary/link/to/the/recording/file",12 "created_at": "2022-01-01T10:00:00Z",13 "updated_at": "2022-01-01T11:00:00Z"14}
1from signalwire.rest import RestClient23client = RestClient(4 project="your-project-id",5 token="your-api-token",6 host="your-space.signalwire.com",7)89recording = client.video.room_recordings.get("recording-id")