Sample code for 30+ languages & platforms
AutoIt

Yousign: Download File

See more Yousign Examples

Downloads a previously uploaded Yousign file.

Chilkat AutoIt Downloads

AutoIt
Local $bSuccess = False

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

$oHttp = ObjCreate("Chilkat.Http")

; Adds the "Authorization: Bearer YOUR_API_KEY" header.
$oHttp.AuthToken = "YOUR_API_KEY"

Local $sDownloadUrl = "https://staging-api.yousign.com/files/XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX/download?alt=media"
Local $sLocalFilePath = "qa_output/x.pdf"

$bSuccess = $oHttp.Download($sDownloadUrl,$sLocalFilePath)
If ($bSuccess = False) Then
    ConsoleWrite($oHttp.LastErrorText & @CRLF)
    Exit
EndIf

ConsoleWrite("The PDF file is downloaded..." & @CRLF)