Passport Loader

Getting started with PassportPDF API

Introduction

PassportPDF API is a REST API that lets you perform complex operations on documents and images easily. You may consume the API by using our SDK, or any REST client by sending your requests to the appropriate endpoints. A list of all the available endpoints can be found on the API reference page.

Authentication

Each available operation has a predefined cost, expressed as a number of tokens. These tokens are deducted from your "passport," which has a unique identifier that acts as an API key. This key is, therefore, required to be provided with each request for the latter to be honored(except if the operation does not have a cost, typically when you request a simple data with a GET). Your key must be included in the header of the request, under the name "X-PassportPdf-API-Key." If you are using the.NET SDK, you can either set your key in the ApiKey property of your API instance(PdfApi or ImageApi, for example) or set it globally in the GlobalConfiguration instance if you want to set it once for the whole life cycle of your application.

Communication with the API

All the available actions are listed on the API reference page, as previously mentioned. There are several different controllers, i.e., routes, which categorize the actions.For example, you may use the PDF controller("/api/pdf" route) to perform PDF - related operations, and the Image controller("/api/image") for images. Each action defines what kind of parameters(if any) is expected, and what kind of response is served.Parameters and responses are represented using data models, or "schemas," and are listed in the "Schemas" section of the reference. Parameters and response models of a given action are both prefixed by the controller name, the action name, and "Parameters" / "Response," e.g. "api/pdf/reduce" respectively receives and serves a PdfReduceParameters and PdfReduceResponse models. Using the .NET SDK, you will find the objects to interact with the different controllers in the PassportPDF.Api namespace and all the schemas in the PassportPDF.Model namespace.

Processing documents

Each document manipulation starts with importing the file onto the API. The LoadDocument action of the PDF controller lets you import your document as a PDF. Note that the GetPDFImportSupportedFileExtensions action of the same controller will let you know all the different types of files that you may import as a PDF. LoadDocument responds with a JSON-serialized PdfLoadDocumentResponse model, which contains a "FileId" property.This identifier is required for the API to know about your document for further manipulations, hence the presence of a "FileId" property in the PdfReduceParameters schema (and many other parameters schemas). To download the changes made to a file, you need, of course, to download the new version of the file from the API. To save your document as a PDF, you will need to use the SaveDocument action of the PDF controller and provide a PdfSaveDocumentParameters data model that contains the identifier of your file.

Errors

Conventional HTTP response codes are used to indicate the success or failure of an API request. The Error data model also defines some information about an error that occurred on the API. Each response model has an Error in its definition, and its sole existence in the serialized response - which should thus always be checked - indicates that something went wrong. Among the information given by the Error schema, "ResultCode" specifies a value of the "PassportPDFStatus" enumeration, that defines a first level of error information. "InternalErrorId" defines a unique identifier for the error, which comes very handy for us to troubleshoot any issue you may encounter quickly.

Efficiency considerations

Multipart upload/download is available and lets you directly stream a file to/from the API. In the PDF controller, LoadDocument/LoadDocumentMultipart and SaveDocument/SaveDocumentToFile may be used to upload/download a document using respectively binary data serialization and streaming multipart HTTP requests. The second approach should be favored when dealing with large files, as it will be much more efficient in that context.