garissman/printify

Printify PHP SDK

Installs: 47

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 0

Forks: 5

Type:project

0.0.5 2024-05-18 06:01 UTC

This package is auto-updated.

Last update: 2025-03-07 06:46:07 UTC


README

Basic PHP wrapper for working with Printify API, for Laravel. API endpoint documentation can be found here: https://developers.printify.com/

Installation

composer require garissman/printify

Publish

After installing, you should publish the configuration file using the vendor:publish Artisan command. This command will publish the printify.php configuration file to your application's config directory:

php artisan vendor:publish --provider="Garissman\Printify\PrintifyServiceProvider"

Basic Usage

Create a new instance of the Printify API and pass it to the endpoint class. For example the Catalog:

use Garissman\Printify\Facades\Printify;

Printify::catalog()->all()

Shop Based Endpoints

For shop based endpoints, pass along the shop ID in the endpoint constructor. For Example:

use Garissman\Printify\Facades\Printify;

Printify::order(<Shop ID>)->all()

Endpoints that need a shop ID:

  • Products
  • Orders
  • Uploads
  • Webhooks

Endpoints