Search Table From URL - Salesforce
PDF Find Table sample in Salesforce demonstrating ‘Search Table From URL’
PDFSearchTables.cls
public class PDFSearchTables {
String API_KEY = '*********************';
String endPointUrl = 'https://api.pdf.co/v1/pdf/find/table';
public void findTablesInPdf() {
try {
String jsonBody = '{"url": "pdfco-test-files.s3.us-west-2.amazonaws.com/pdf-to-text/sample.pdf", "async": "false", "inline": "true", "password": ""}';
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('PDF Search Tables: ' + 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);
}
}
}
PDFSearchTablesTest.cls
@isTest
private class PDFSearchTablesTest {
static testMethod void testFindTablesInPdf() {
Test.startTest();
Test.setMock(HttpCalloutMock.class, new PDFSearchTablesTest.PDFSearchTablesMock());
PDFSearchTables pdfSearchTables = new PDFSearchTables();
pdfSearchTables.findTablesInPdf();
Test.stopTest();
}
public class PDFSearchTablesMock implements HttpCalloutMock {
public HttpResponse respond(HTTPRequest req) {
HttpResponse res = new HttpResponse();
String testBody = '{"success":true,"tables":[{"page":0,"x":18.5,"y":26.5,"width":200,"height":100},{"page":1,"x":18.5,"y":26.5,"width":200,"height":100}],"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.
Download Source Code (.zip)
return to the previous page explore PDF Find Table endpoint
Copyright © 2016 - 2023 PDF.co