An HTTP API to merge multiple PDFs in one. Supports Multipart Requests and Base64 JSON Requests
run the command docker run -p 7000:7000 kisoft/pdf-merger to spin up
a new instance.
Make a POST request to /merge-multipart with the PDF files
you want to merge together.
Make a POST request to /merge-base64 with the JSON structure
{
"files": string[]
}
where each file is a base64 encoded PDF file in the files array.
TODO
TODO