Imagicle Call Recording for UCX Platform

Download Recording Transcription

GET /v1/recordings/{recordingId}/transcription

Summary:
Returns the transcription of the specified recording.

Security:

  • Bearer Authentication required.

Path Parameter:

  • recordingId: The recording’s unique identifier.

Response:

  • 200 OK:
    Returns a JSON object with:

    • speakers: An array of Speaker objects.

    • sentences: An array of Sentence objects.

    Example:

    {
      "speakers": [
        { "speakerId": "1", "speakerLabel": "Name Surname" },
        { "speakerId": "2", "speakerLabel": "Name2 Surname2" }
      ],
      "sentences": [
        { "speakerId": "2", "startTime": 0.5, "endTime": 0.9, "text": "Hello from Imagicle" },
        { "speakerId": "1", "startTime": 1, "endTime": 1.2, "text": "Hello I'm Andrea" }
      ]
    }
    
    
  • 204 No Content: Transcription job is still in progress.

  • 401, 403, 404, 500: Error responses.

Last updated: