Download the PHP package afurculita/woocommerce-api-client without Composer
On this page you can find all versions of the php package afurculita/woocommerce-api-client. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download afurculita/woocommerce-api-client
More information about afurculita/woocommerce-api-client
Files in afurculita/woocommerce-api-client
Package woocommerce-api-client
Short Description Woocommerce Rest API client
License MIT
Homepage https://github.com/kloon/WooCommerce-REST-API-Client-Library
Informations about the package woocommerce-api-client
WooCommerce REST API Client Library
A PHP wrapper for the WooCommerce REST API. Easily interact with the WooCommerce REST API using this wrapper class. Feedback and bug reports are appreciated.
Requirements
PHP 5.2.x cURL WooCommerce 2.1 at least on the store
Getting started
Generate API credentials ( Consumer Key & Consumer Secret ) on your profile page for the store you want to interact with.
A good place to start is to look at the example script included.
Initialize the class
Get the data using methods
All methods return the data json_decode()
by default so you can access the data.
Available methods
Index method
get_index()
Order methods
get_orders()
get_orders( $params = array( 'status' => 'completed' ) )
get_order( $order_id )
get_orders_count()
get_order_notes( $order_id )
update_order( $order_id, $data = array( 'status' => 'processing' ) )
Coupon methods
get_coupons()
get_coupon( $coupon_id )
get_coupon_by_code( $coupon_code )
get_coupons_count()
Customer methods
get_customers()
get_customers( $params = array( 'filter[created_at_min]' => '2013-12-01' ) )
get_customer( $customer_id )
get_customers_count()
get_customer_orders( $customer_id )
Product methods
get_products()
get_products( $params = array( 'filter[created_at_min]' => '2013-12-01' ) )
get_product( $product_id )
get_products_count()
get_product_reviews( $product_id )
Report methods
get_reports()
get_sales_report( $params = array( 'filter[start_date]' => '2013-12-01', 'filter[end_date]' => '2013-12-09' ) )
get_top_sellers_report( $params = array( 'filter[limit]' = '10' ) )
Custom endpoints
If you extended the WooCommerce API with your own endpoints you can use the following function to get access to that data
make_custom_endpoint_call( $endpoint, $params = array(), $method = 'GET' )
Credit
Copyright (c) 2013-2014 - Gerhard Potgieter Released under the GPL3 license