[DELETE] Task Speaker

Use this request to delete a speaker in a specific task and workspace.

Task Speaker

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

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.

speakerId

string

The unique identifier of your Speaker.

Example Request

curl -X 'DELETE' \
'https://cloud.smartdocumentor.net/api/v1.0/external/transcripts/speakers/tasks/1234/5678/90edf137-ea2a-4b59-bf51-45446299d47e' \
  --header 'Authorization: Bearer {your access token here}' \
  --header 'accept: application/json' \
  --header 'Content-Type: application/json'

Responses

{
    "speakerId": "90edf137-ea2a-4b59-bf51-45446299d47e",
    "speakerName": "Some Name",
    "speakerPrefix": "",
    "speakerSuffix": "",
    "isDefault": false
}

Response Body ExternalTaskSpeakerModel

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

Defines whether the Speaker is the default

Last updated