[GET] Workspace Speakers
Workspace Speakers
Path Parameters
Name
Type
Description
Example Request
curl -X 'GET' \
'https://cloud.smartdocumentor.net/api/v1.0/external/transcripts/speakers/workspaces/1234' \
--header 'Authorization: Bearer {your access token here}' \
--header 'accept: application/json'var client = new HttpClient();
var request = new HttpRequestMessage(HttpMethod.Get, "https://cloud.smartdocumentor.net/api/v1.0/external/transcripts/speakers/workspaces/1234");
request.Headers.Add("Authorization", "Bearer {your access token here}");
request.Headers.Add("Accept", "application/json");
var response = await client.SendAsync(request);
response.EnsureSuccessStatusCode();
Console.WriteLine(await response.Content.ReadAsStringAsync());import requests
url = "https://cloud.smartdocumentor.net/api/v1.0/external/transcripts/speakers/workspaces/1234"
headers = {
'Authorization': 'Bearer {your access token here}',
'Accept': 'application/json'
}
response = requests.get(url, headers=headers)
print(response.text)Responses
{
"type": "https://tools.ietf.org/html/rfc7231#section-6.6.1",
"title": "InternalError",
"status": 500,
"detail": "An unexpected error occurred while retrieving speakers.",
"instance": null,
"extensions": {
"traceId": "00-d5581449c3b8b2ee06b30ef0b8278997-0ed9bec6d644277e-01"
}
}Response Body Problem Detail JSON Object
Last updated