1.2.1 • Published 24 days ago

@print-one/print-one-js v1.2.1

Weekly downloads
-
License
MIT
Repository
github
Last release
24 days ago

Print-one.js

npm package Build Status Issues Semantic Release

The official javascript client for Print.one

Installation

npm install @print-one/print-one-js

Example

import { PrintOne } from '@print-one/print-one-js'

const client = new PrintOne("<YOUR API TOKEN>");

const templates = await client.getTemplates();
const template = templates[0];

const order = await client.createOrder({
    recipient: {
        name: "John Doe",
        address: "Example Street 2",
        city: "Anytown",
        postalCode: "1234AB",
        country: "NL",
    },
    template: template,
    // All other options are optional
    sender: {
        name: "Jane Doe",
        address: "Example Street 1",
        addressLine2: "Apt 1",
        city: "Anytown",
        postalCode: "1234AB",
        country: "NL",
    },
    finish: Finish.GLOSSY,
    mergeVariables: {
        couponCode: "ABC123"
    },
    billingId: "8073",
    sendDate: "2021-01-01",
});

const download = await order.download();

fs.writeFileSync("order.pdf", download);

Help

  • For documentation and more examples, see the documentation.
  • With problems, questions or suggestions, please file an issue.
  • For other questions, feel free to contact us at our support page.
1.2.1

24 days ago

1.2.0

1 month ago

1.2.0-next.1

3 months ago

1.1.0

4 months ago

1.0.0

5 months ago

0.0.1

5 months ago