Link Search Menu Expand Document

Convert CSV To PDF From URL - Salesforce

PDF from CSV (CSV to PDF) sample in Salesforce demonstrating ‘Convert CSV To PDF From URL’

PDFFromCSV.cls
public class PDFFromCSV {

    String API_KEY = 'YOUR_PDF_CO_API_KEY_HERE';
    String endPointUrl = 'https://api.pdf.co/v1/pdf/convert/from/csv';

    public void convertCSVtoPDF() {
        try {
            String jsonBody = '{ "url": "https://pdfco-test-files.s3.us-west-2.amazonaws.com/csv-to-pdf/sample.csv", "pages": "0-", "name": "result.pdf", "async": false }';
            Http http = new Http();
            HttpRequest request = new HttpRequest();
            request.setHeader('x-api-key', API_KEY);
            request.setEndpoint(endPointUrl);
            request.setHeader('Content-Type', 'application/json');
            request.setMethod('POST');
            request.setBody(jsonBody);
            HttpResponse response = http.send(request);

            if(response.getStatusCode() == 200) {
                System.debug('Converted PDF: ' + response.getBody());
            } else {
                System.debug('Error Response ' + response.getBody());
                System.Debug(' Status ' + response.getStatus());
                System.Debug(' Status Code' + response.getStatusCode());
                System.Debug(' Response String' + response.toString());
            }
        } catch (Exception ex) {
            String errorBody = 'Message: ' + ex.getMessage() + ' -- Cause: ' + ex.getCause() + ' -- Stacktrace: ' + ex.getStackTraceString();
            System.Debug(errorBody);
        }
    }
}

PDFFromCSVTest.cls
@isTest
private class PDFFromCSVTest {

    static testMethod void testPDFFromCSV() {
        Test.startTest();
        Test.setMock(HttpCalloutMock.class, new PDFFromCSVTest.PDFFromCSVMock());
        PDFFromCSV pdfFromCSV = new PDFFromCSV();
        pdfFromCSV.convertCSVtoPDF();
        Test.stopTest();
    }

    public class PDFFromCSVMock implements HttpCalloutMock {
        public HttpResponse respond(HTTPRequest req) {
            HttpResponse res = new HttpResponse();
            String testBody = '{"success":true,"url":"https://pdfco-test-files.s3.us-west-2.amazonaws.com/pdf-converted/sample.pdf","message":"PDF Created","error":false,"status":200}';
            res.setHeader('Content-Type', 'application/json');
            res.setBody(testBody);
            res.setStatusCode(200);
            return res;
        }
    }
}

PDF.co Web API: the Web API with a set of tools for documents manipulation, data conversion, data extraction, splitting and merging of documents. Includes image recognition, built-in OCR, barcode generation and barcode decoders to decode bar codes from scans, pictures and pdf.

Get your PDF.co API key here!

Download Source Code (.zip)

return to the previous page explore PDF from CSV (CSV to PDF) endpoint