action api2pdf_merge_post { label: "Merge multiple PDFs together" description: "Merge two or more PDFs together on AWS Lambda.\n### Authorize via Header of Request\n**Authorization: YOUR-API-KEY**" provider: api2pdf method: POST path: "/merge" encoding: json input: { type: "object" required: ["urls"] properties: { fileName: { type: "string" } inlinePdf: { type: "boolean" } urls: { type: "array" format: "list of urls to pdfs" items: { type: "string" } } } } output: { type: "object" properties: { cost: { type: "number" description: "Cost of the operation (mbIn + mbOut) * $.001" } mbIn: { type: "number" description: "The amount of megabytes of bandwidth used to process the pdf" } mbOut: { type: "number" description: "The amount of megabytes of bandwidth generated from the resulting pdf" } pdf: { type: "string" description: "A url to the PDF that will exist only for 24 hours" } success: { type: "boolean" description: "Will be true if the operation suceeded" } } } }