New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

printify-sdk-js

Package Overview
Dependencies
Maintainers
0
Versions
9
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

printify-sdk-js

Printify SDK for JavaScript. Client for Node.js

  • 1.0.1
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
171
increased by171.43%
Maintainers
0
Weekly downloads
 
Created
Source

Printify SDK for TypeScript (Node.js)

NPM Version Coverage MIT license

Printify SDK for Node.js. A basic TypeScript wrapper for the Printify REST API (v1). Guidelines and source endpoints can be found here: developers.printify.com.

Getting started

Prerequisites

  1. Printify API Token (documentation)

Installation

npm install printify-sdk-js

Usage

⚠️ For security purposes, this is intended only for server-side use, the API does not support CORS and will not process requests from a frontend application

import Printify from 'printify-sdk-js';
// const Printify = require('printify-sdk-js'); // CommonJS

const printify = new Printify({
  shopId: '123456', // global query by shop_id
  accessToken: process.env.API_TOKEN,
});

(async () => {
  const data = {/* ... */};
  const result = await printify.orders.submit(data);

  console.log(result); // { "id": "5a96f649b2439217d070f507" }
})();

API

For the full documentation, please see API.md

Contributing

We welcome contributions from the community! If you're interested in contributing to this project, please read the CONTRIBUTING.md file to get started.

Disclaimer

This SDK is a third-party library and is not officially endorsed or maintained by Printify. It is provided "as is" without warranty of any kind. For official information and guidelines on using the Printify API, please refer to the Printify Developer Documentation.

License

MIT

Keywords

FAQs

Package last updated on 29 Jul 2024

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc