getCallTranscription

This method can only be called after transcribing a call.

Request Method: GET

Description: Returns a list of transcriptions for a call.

URL: https://api.iovox.com:444/Calls?v=3&method=getCallTranscription

The following parameters can be sent in the querystring

Parameter Default Value Data Type Mandatory Description
v INTEGER YES API version to use
id INTEGER YES Returns the transcription for the recording associated with this Call ID. This ID is the id field retrieved from Interface Calls::getCallData
record_label callRecording STRING NO This will specify which of the possible transcriptions of a call should be returned. There are multiple transcriptions per call possible.

Result

Error Result

HTTP CodeError StringResolution
400API Version EmptyAdd a value for the v parameter in the query string
400API Version InvalidCorrect v parameter
400Request Method must be GET. x attemptedSwitch request method x to GET
400The specified call does not have a recordingChange the id parameter to a call ID that has a recording associated
400The specified Call ID does not existChange the id parameter to an existing call ID
400Call ID not an integerRemove non-numerics from id
400Call ID EmptyAdd a value for the id parameter in the query string
500Internal Server ErrorRetry later

Success Result

<?xml version="1.0" encoding="utf-8"?>

<response>
    <result>
        <id>3604</id>
        <record_label>callRecording</record_label>
        <transcription>Hello, Hello? I think you have the wrong number. Sorry. Have a good day sir.</transcription>
    </result>
</response>