A customizable, open-source ecommerce platform built on WordPress. Build any commerce solution you can imagine.
Go to file
Mike Jolley 1c82fd60f8 Fix some strings which should not be replaced 2019-06-24 15:47:00 +01:00
src Fix some strings which should not be replaced 2019-06-24 15:47:00 +01:00
unit-tests Update dist file and namespaces 2019-06-21 10:40:39 +01:00
.editorconfig Test version - api copied from core with loader 2019-05-10 17:56:07 +01:00
.gitattributes Comments 2019-06-21 14:57:26 +01:00
.gitignore Update autoload handling and build 2019-06-20 11:30:19 +01:00
.scrutinizer.yml config 2019-06-19 15:50:52 +01:00
.travis.yml config 2019-06-11 11:41:21 +01:00
README.md Update dist file and namespaces 2019-06-21 10:40:39 +01:00
composer.json Unique text domains 2019-06-24 13:01:21 +01:00
composer.lock Fix some strings which should not be replaced 2019-06-24 15:47:00 +01:00
phpcs.xml Fix some strings which should not be replaced 2019-06-24 15:47:00 +01:00
phpunit.xml Fix tests for batches 2019-06-14 13:43:29 +01:00
woocommerce-rest-api.php Unique text domains 2019-06-24 13:01:21 +01:00

README.md

WooCommerce REST API

license Latest Stable Version Build Status Scrutinizer Code Quality

This repository is home to the WooCommerce REST API package.

The stable version of this package is bundled with WooCommerce core releases, but it can also be used as a standalone plugin so bleeding-edge API features can be tested or used by other feature plugins.

Using this package as a plugin

After checking out the code to your wp-content/plugins directory, you'll need to run composer install in the plugin directory (wp-content/plugins/woocommerce-rest-api) to install dependencies and to enable the autoloader. Without performing this step, if you activate the plugin it will simply show an admin notice.

API documentation

Versions

Namespace Status Docs
wc/v4 Development Link
wc/v3 Stable Link
wc/v2 Deprecated - October 2020 Link
wc/v1 Deprecated - April 2019 Link

Note: API Versions are kept around for 2 years after being replaced, and may be removed in the next major version after that date passes.

Using this package in other projects

This package is hosted on Packagist and can be included using composer.json:

"require": {
    "woocommerce/woocommerce-rest-api": "1.0.0"
},

Since multiple versions of this package may be included at the same time, it includes a special package-version autoloader. This dependency is also on Packagist:

  "automattic/jetpack-autoloader": "^1"

And using this autoloader requires the following include in your codebase:

$autoloader = __DIR__ . '/vendor/autoload_packages.php';

If you choose to use your own autoloader, please note you won't be able to determine which version of the package is running since it could use the version in WooCommerce core or your version. The namespaces would conflict. All of our feature plugins and packages use the package autoloader.

Contributing

Please read the WooCommerce contributor guidelines for more information how you can contribute to WooCommerce, and the REST API contribution documentation here.

Within this package, namespaces and endpoint classes are located within the src/RestAPI/ directory. If you need to change the behavior of an endpoint, you can do so in these classes.

Run tests using phpunit in the root of the package. All pull-requests must pass unit tests in order to be accepted.

Translation

For strings located in API endpoints, use woocommerce as your text-domain. These endpoints will be translated in the WooCommerce Core PO/MO files.