List
Last updated
Last updated
To list the transcripts for a concrete room you need to execute a GET request against the /rooms/:id/transcripts endpoint.
Use the session_id argument if you want to list transcripts for a concrete session. https://api.digitalsamba.com/api/v1/rooms/c39d7c40-7ff7-4faa-b06f-698a639a9523/transcripts?session_id=16e44502-dae5-41f9-b095-e41bf6ac2d1d
Since potentially there could be thousands of transcripts, pagination is supported with limit and offset arguments. Read about to learn the details of it. By default maximum 100 transcripts will be returned in the response.
curl --request GET \
--url https://api.digitalsamba.com/api/v1/rooms/c39d7c40-7ff7-4faa-b06f-698a639a9523/transcripts \
--user YOUR_TEAM_ID:YOUR_DEVELOPER_KEY
import com.fasterxml.jackson.databind.ObjectMapper;
import java.net.URI;
import java.net.http.HttpClient;
import java.net.http.HttpRequest;
import java.net.http.HttpResponse;
import java.net.http.HttpResponse.BodyHandlers;
import java.util.Base64;
import java.util.Map;
String TEAM_ID = "YOUR_TEAM_ID";
String DEVELOPER_KEY = "YOUR_DEVELOPER_KEY";
String authorizationHeader = "Bearer " + Base64.getEncoder().encodeToString((TEAM_ID + ":" + DEVELOPER_KEY).getBytes());
//Put your room id or friendly_url (name) here - this value is just an example
String roomId = "c39d7c40-7ff7-4faa-b06f-698a639a9523";
HttpRequest request = HttpRequest.newBuilder()
.GET()
.uri(new URI("https://api.digitalsamba.com/api/v1/rooms/" + roomId + "/transcripts"))
.header("Authorization", authorizationHeader)
.build();
HttpClient client = HttpClient.newHttpClient();
HttpResponse<String> response = client.send(request, BodyHandlers.ofString());
System.out.println("Status code: " + response.statusCode());
System.out.println("Body: " + response.body());
{
"total_count": 3,
"data": [
{
"participant_id": "f06e6600-9424-4dc0-8e7d-a968df2c983d",
"participant_name": "John Smith",
"transcript": "Morning. How are you?",
"start_time": "2024-04-10T12:18:27Z",
"end_time": "2024-04-10T12:33:27Z"
},
{
"participant_id": "f06e6600-9424-4dc0-8e7d-a968df2c983d",
"participant_name": "Jane Doe",
"transcript": "I am fine, thanks! What about you?",
"start_time": "2024-04-10T12:10:27Z",
"end_time": "2024-04-10T12:31:27Z"
},
{
"participant_id": "f06e6600-9424-4dc0-8e7d-a968df2c983d",
"participant_name": "John Doe",
"transcript": "Hi all!",
"start_time": "2024-04-10T12:06:27Z",
"end_time": "2024-04-10T12:33:27Z"
}
]
}