[GET] Get Export Data Transcript Simplified

Use this request to get the exported data of a specific Transcript Task, hiding its technical details.

Get Export Data Transcript Simplified

GET/api/v1.0/external/sdtask/GetExportData/Transcript/{taskid}/simplified

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.

externalId

string (optional)

An optional External ID, valid for your organization and added to the Task at creation, that uniquely identifies it in your Organization.

At least one of taskId or externalId must be specified.

circle-info

What is an "External ID"?

While you integrate with our API, you may wish to keep track of your Tasks using an already existing identifier which is meaningful for your system and your business.

This is the purpose of the External ID - you can populate it with any string of text, as long as it is unique in your organization.

Example Request

curl --location 'https://cloud.smartdocumentor.net/api/v1.0/external/sdtask/GetExportData/{taskId}/simplified' 
--header 'Authorization: Bearer {your access token here}'

Responses

{
  "taskId": 0,
  "originalFileUrl": "string",
  "workspaceId": 0,
  "batchId": 0,
  "taskNumber": 0,
  "displayName": "string",
  "description": "string",
  "totalTimeInSeconds": 0,
  "lastCheckoutByUserName": "string",
  "lastCheckedOutBy": 0,
  "lastCheckedOutUntil": "2025-12-31T15:38:40.325Z",
  "lastIntegratedBy": 0,
  "lastIntegratedByUserName": "string",
  "lastIntegratedOn": "2025-12-31T15:38:40.325Z",
  "transcript": {
    "transcripts": [
      {
        "speakerId": "string",
        "start": 0,
        "end": 0,
        "duration": 0,
        "confidence": 0,
        "displayText": "string"
      }
    ],
    "speakers": [
      {
        "speakerId": "string",
        "speakerName": "string",
        "speakerPrefix": "string",
        "speakerSuffix": "string"
      }
    ]
  },
  "metadata": {
    "additionalProp1": "string",
    "additionalProp2": "string",
    "additionalProp3": "string"
  }
}

Last updated