Sample code for 30+ languages & platforms
Unicode C++

Yousign: Download File

See more Yousign Examples

Downloads a previously uploaded Yousign file.

Chilkat Unicode C++ Downloads

Unicode C++
#include <CkHttpW.h>

void ChilkatSample(void)
    {
    bool success = false;

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

    CkHttpW http;

    // Adds the "Authorization: Bearer YOUR_API_KEY" header.
    http.put_AuthToken(L"YOUR_API_KEY");

    const wchar_t *downloadUrl = L"https://staging-api.yousign.com/files/XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX/download?alt=media";
    const wchar_t *localFilePath = L"qa_output/x.pdf";

    success = http.Download(downloadUrl,localFilePath);
    if (success == false) {
        wprintf(L"%s\n",http.lastErrorText());
        return;
    }

    wprintf(L"The PDF file is downloaded...\n");
    }