1. Go to this page and download the library: Download c14r/woocommerce-api library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
c14r / woocommerce-api example snippets
use C14r\Woocommerce\V3\API;
// via helper function
$api = woo();
// via dependency injection
public function example(API $api)
// via singleton
$api = API::getInstance();
$order = $api->order($order_id)->cache(); // instead of ...->get()
$orders = $api->orders()->cacheAll(); // instead of ...->all()
// List Customers
$api->customers()->get();
// Retrieve a Customer
$api->customer($customer_id)->get();
// Create a Customer
$api->customers()->create([
]);
// Update a Customer
$api->customer($customer_id)->update([
]);
// Batch
$api->customerBatch()->post([
]);
// Retrieve Customer Downloads
$api->customerDownloads($customer_id)->get();
// List Orders (paginated)
$api->orders()->get();
// List all Orders
$api->orders()->all(); // or cacheAll($seconds)
// Retrieve an Order
$api->order($order_id)->get();
// Create an Order
$api->orders()->create([
'title' => 'The Title!',
'status' => OrderStatus::on_hold
]);
// Update an Order
$api->order($id)->update([
'status' => OrderStatus::completed
]);
// Delete an order
$api->order($id)->delete();
// List Order Notes per Order
$api->orderNotes($order_id)->get();
// Retrieve an Order Note
$api->orderNote($order_id, $note_id)->get();
// Create an Order Note
$api->orderNotes($order_id)->create([
'note' => 'Order ok!'
]);
// Delete an Order Note
$api->orderNote($order_id, $note_id)->delete();
// List Order Refunds per Order
$api->orderRefunds($order_id)->get();
// Retrieve an Order Refund
$api->orderRefund($order_id, $refund_id)->get();
// Create an Order Refund
$api->orderRefunds($order_id)->create([
'amount' => 30,
'line_items' => [
[
'id' => 111,
'refund_total' => 10,
'refund_tax' => [
[
'id' => 222,
'amount' => 20
]
]
]
]
]);
// Delete an Order Refund
$api->orderRefund($order_id, $refund_id)->delete();
// List Product
$api->products()->get();
// Retrieve a Product
$api->product($product_id)->get();
// Create a Product
$api->product($product_id)->create([
'name' => 'Premium Quality',
'type' => 'simple',
'regular_price' => 21.99,
'description' => 'Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo.',
'short_description' => 'Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas.',
'categories' => [
[
'id' => 9
],
[
'id' => 14
]
],
'images' => [
[
'src' => 'http://demo.woothemes.com/woocommerce/wp-content/uploads/sites/56/2013/06/T_2_front.jpg'
],
[
'src' => 'http://demo.woothemes.com/woocommerce/wp-content/uploads/sites/56/2013/06/T_2_back.jpg'
]
]
]);
// Update a Product
$api->product($product_id)->update([
'regular_price' => 24.54
]);
// Batch
$api->productBatch()->post([
'create' => [
[
'name' => 'Woo Single #1',
'type' => ProductType::simple,
'regular_price' => 21.99,
'virtual' => true,
'downloadable' => true,
'downloads' => [
[
'name' => 'Woo Single',
'file' => 'http://demo.woothemes.com/woocommerce/wp-content/uploads/sites/56/2013/06/cd_4_angle.jpg'
]
],
'categories' => [
[
'id' => 11
],
[
'id' => 13
]
],
'images' => [
[
'src' => 'http://demo.woothemes.com/woocommerce/wp-content/uploads/sites/56/2013/06/cd_4_angle.jpg'
]
]
],
[
'name' => 'New Premium Quality',
'type' => 'simple',
'regular_price' => 21.99,
'description' => 'Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo.',
'short_description' => 'Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas.',
'categories' => [
[
'id' => 9
],
[
'id' => 14
]
],
'images' => [
[
'src' => 'http://demo.woothemes.com/woocommerce/wp-content/uploads/sites/56/2013/06/T_2_front.jpg'
],
[
'src' => 'http://demo.woothemes.com/woocommerce/wp-content/uploads/sites/56/2013/06/T_2_back.jpg'
]
]
]
],
'update' => [
[
'id' => 799,
'default_attributes' => [
[
'id' => 6,
'name' => 'Color',
'option' => 'Green'
],
[
'id' => 0,
'name' => 'Size',
'option' => 'M'
]
]
]
],
'delete' => [
794
]
]);
// List Shipping Methods
$api->shippingMethods()->get();
// Retrieve a Shipping Methods
$api->shippingMethod($method_id)->get();
// Create a Shipping Methods
$api->shippingMethods()->create([
]);
// Update a Shipping Methods
$api->shippingMethod($method_id)->update([
]);
// List Shipping Zones
$api->shippingZones()->get();
// Retrieve a Shipping Zones
$api->shippingZone($zone_id)->get();
// Create a Shipping Zones
$api->shippingZones()->create([
]);
// Update a Shipping Zones
$api->shippingZone($zone_id)->update([
]);
// TODO
// List Shipping Zones Method
$api->shippingZoneMethods($zone_id)->get();
// Retrieve a Shipping Zones Method
$api->shippingZoneMethod($zone_id, $instance_id)->get();
// Create a Shipping Zones Method
$api->shippingZoneMethods($zone_id)->create([
]);
// Update a Shipping Zones Method
$api->shippingZoneMethod($zone_id, $instance_id)->update([
]);
// List Reports
$api->reports()->get();
// List Report Sales
$api->xyz()->get();
// Retrieve a Report Sales
$api->xyz()->get();
// Create a xyz
$api->xyz()->create([
]);
// Update a xyz
$api->xyz()->update([
]);
// Batch
$api->xyz()->post([
]);
// List Report Top Seller
$api->xyz()->get();
// Retrieve a Report Top Seller
$api->xyz()->get();
// Create a xyz
$api->xyz()->create([
]);
// Update a xyz
$api->xyz()->update([
]);
// Batch
$api->xyz()->post([
]);
// List ettings
$api->xyz()->get();
// Retrieve a ettings
$api->xyz()->get();
// Create a xyz
$api->xyz()->create([
]);
// Update a xyz
$api->xyz()->update([
]);
// Batch
$api->xyz()->post([
]);
// List axes
$api->xyz()->get();
// Retrieve a axes
$api->xyz()->get();
// Create a xyz
$api->xyz()->create([
]);
// Update a xyz
$api->xyz()->update([
]);
// Batch
$api->xyz()->post([
]);
// List Tax Classes
$api->xyz()->get();
// Retrieve a Tax Classes
$api->xyz()->get();
// Create a xyz
$api->xyz()->create([
]);
// Update a xyz
$api->xyz()->update([
]);
// Batch
$api->xyz()->post([
]);
// List ebhooks
$api->xyz()->get();
// Retrieve a ebhooks
$api->xyz()->get();
// Create a xyz
$api->xyz()->create([
]);
// Update a xyz
$api->xyz()->update([
]);
// Batch
$api->xyz()->post([
]);
// List ayment Gateways
$api->xyz()->get();
// Retrieve a ayment Gateways
$api->xyz()->get();
// Create a xyz
$api->xyz()->create([
]);
// Update a xyz
$api->xyz()->update([
]);
// Batch
$api->xyz()->post([
]);
// List ystem
$api->xyz()->get();
// Retrieve a ystem
$api->xyz()->get();
// Create a xyz
$api->xyz()->create([
]);
// Update a xyz
$api->xyz()->update([
]);
// Batch
$api->xyz()->post([
]);
// List System Status
$api->xyz()->get();
// Retrieve a System Status
$api->xyz()->get();
// Create a xyz
$api->xyz()->create([
]);
// Update a xyz
$api->xyz()->update([
]);
// Batch
$api->xyz()->post([
]);
// List System Status Tools
$api->xyz()->get();
// Retrieve a System Status Tools
$api->xyz()->get();
// Create a xyz
$api->xyz()->create([
]);
// Update a xyz
$api->xyz()->update([
]);
// Batch
$api->xyz()->post([
]);
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.