Sample code for 30+ languages & platforms
PowerBuilder

VoiceBase -- Retrieve Plain Text Transcript

See more VoiceBase Examples

Retrieves a plain text transcript for a media file.

Chilkat PowerBuilder Downloads

PowerBuilder
integer li_rc
string ls_AccessToken
oleobject loo_Http
oleobject loo_SbAuth
oleobject loo_SbUrl
integer li_ReplaceCount
string ls_StrText

// This example assumes the Chilkat HTTP API to have been previously unlocked.
// See Global Unlock Sample for sample code.

// Insert your Bearer token here:
ls_AccessToken = "VOICEBASE_TOKEN"

loo_Http = create oleobject
li_rc = loo_Http.ConnectToNewObject("Chilkat.Http")
if li_rc < 0 then
    destroy loo_Http
    MessageBox("Error","Connecting to COM object failed")
    return
end if

// Add the access (bearer) token to the request, which is a header
// having the following format:
// Authorization: Bearer <userAccessToken>
loo_SbAuth = create oleobject
li_rc = loo_SbAuth.ConnectToNewObject("Chilkat.StringBuilder")

loo_SbAuth.Append("Bearer ")
loo_SbAuth.Append(ls_AccessToken)
loo_Http.SetRequestHeader("Authorization",loo_SbAuth.GetAsString())

loo_SbUrl = create oleobject
li_rc = loo_SbUrl.ConnectToNewObject("Chilkat.StringBuilder")

loo_SbUrl.Append("https://apis.voicebase.com/v2-beta/media/$MEDIA_ID/transcripts/latest")
li_ReplaceCount = loo_SbUrl.Replace("$MEDIA_ID","f9b9bb88-d52c-4960-bcef-d516a9f85594")

loo_Http.Accept = "text/plain"

ls_StrText = loo_Http.QuickGetStr(loo_SbUrl.GetAsString())
if loo_Http.LastMethodSuccess <> 1 then
    Write-Debug loo_Http.LastErrorText
    destroy loo_Http
    destroy loo_SbAuth
    destroy loo_SbUrl
    return
end if

Write-Debug "Response status code = " + string(loo_Http.LastStatus)
Write-Debug ls_StrText

if loo_Http.LastStatus <> 200 then
    Write-Debug "Failed"
else
    Write-Debug "Success"
end if



destroy loo_Http
destroy loo_SbAuth
destroy loo_SbUrl