Skip to content

Latest commit

 

History

History
30 lines (19 loc) · 545 Bytes

index.rst

File metadata and controls

30 lines (19 loc) · 545 Bytes

Basic Usage

Setup

require 'vendor/autoload.php';

use Onetoweb\ShopifyOrder\Client;

// params
$shopUrl = 'https://example.myshopify.com/';
$accessToken = '{access_token}';

// (optional) params
$apiVersion = '2024-10'; // if api version is ommited it defaults to 2024-10

// setup client
$client = new Client($apiKey, $testModus, $apiVersion);

Endpoint Examples