[GET] Task Speakers

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

Task Speakers

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

Path Parameters

Name
Type
Description

taskId

integer

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

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/tasks/1234/5678' \
  --header 'Authorization: Bearer {your access token here}' \
  --header 'Accept: application/json'

Responses

{
  "speakers": [
    {
      "speakerId": "5d4e2394-aa6c-4393-9d91-21ef032fe881",
      "speakerName": "Some Name",
      "speakerPrefix": "Some Prefix",
      "speakerSuffix": "Some Suffix",
      "isDefault": true,
      "source": 10
    }
  ]
}

Response Body ExternalTaskSpeakers

Name
Type
Description

speakers

[ExternalTaskSpeakerViewModel]

The list of speakers.

Response Body ExternalTaskSpeakerViewModel

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.

isDefault

boolean

Identifies whether the Speaker is the default speaker. Only one per task.

source

Source to which the Speaker belongs

Last updated