slince / shopify-api-php

:rocket: Shopify API Client for PHP
MIT License
128 stars 48 forks source link

checkouts, how can we get the checkouts? (none completed orders) #58

Open zerdmer opened 4 years ago

zerdmer commented 4 years ago

checkouts, how can we get the checkouts? (none completed orders)

franciscocp123 commented 2 years ago

Some update? how can we get the checkouts? (none completed orders)

slince commented 2 years ago

hello, there is no checkout manager now. you can get that by using CURB method

$checkouts = $client->get('checkouts', [
    // Filter your checkouts
]);
$checkout = $client->post('checkouts/xxx', [
    // Filter your checkouts
]);