Skip to content

Advanced

Attaching Extra Documents

You can attach terms and conditions, forms, brochures, flyers or other supplementary materials to your letters.

On this page

Including Extra Documents in a Print Job

Extra documents can be provided as PDF or Word documents.

Node.js SDK
Node.js
import Intelliprint from 'intelliprint'

const ip = new Intelliprint('your-api-key-here')

import fs from 'fs'

const printJob = await ip.prints.create({
  extra_documents: [
    {
      document: fs.createReadStream('path/to/my/extra/document1.pdf'),
      apply_background: true
    },
    {
      document: fs.createReadStream('path/to/my/extra/document2.docx'),
      apply_background: true
    },
  ],
  // ...Other properties.
})

Ordering Extra Documents

Extra documents are included in letters in the same order they are provided in the print job.