[GET] Workspace Speakers

Use this request to get information about speakers in a specific workspace.

Workspace Speakers

GET/api/v1.0/external/transcripts/speakers/workspaces/{workspaceId}

Path Parameters

Name
Type
Description

workspaceId

integer

The ID that identifies the workspace to retrieve data on. This ID is always unique and never changes after it has been created.

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'

Responses

{
  "speakers": [
    {
      "speakerId": "93492c69-c385-4876-be54-4e8c461ebebc",
      "speakerName": "Some Name",
      "speakerPrefix": "Some Prefix",
      "speakerSuffix": "Some Suffix"
    }
  ]
}

Response Body ExternalWorkspaceSpeakers

Name
Type
Description

speakers

[ExternalWorkspaceSpeakerViewModel]

The list of speakers.

Response Body ExternalWorkspaceSpeakerViewModel

Name
Type
Description

speakerId

string

The unique identifier of your Speaker.

speakerName

string

The name of your Speaker.

speakerPrefix

string (optional)

Optional prefix for your Speaker.

speakerSuffix

string (optional)

Optional suffix for your Speaker.

Last updated