WooCommerce · Example Payload

Woocommerce Rest Api System Status Example

eCommerceOpen SourceOrdersProductsWordPress

Woocommerce Rest Api System Status Example is an example object payload from WooCommerce, with 3 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

environmentactive_pluginstheme

Example Payload

Raw ↑
{
  "environment": {
    "home_url": "https://example.com/path",
    "site_url": "https://example.com/path",
    "wc_version": "string-value",
    "wp_version": "string-value",
    "php_version": "string-value",
    "php_memory_limit": "string-value",
    "php_max_upload_size": "string-value",
    "mysql_version": "string-value",
    "log_directory_writable": true
  },
  "active_plugins": [
    {
      "plugin": "string-value",
      "name": "Example Name",
      "version": "string-value",
      "author_name": "Example Name"
    }
  ],
  "theme": {
    "name": "Example Name",
    "version": "string-value",
    "author_url": "https://example.com/path",
    "is_child_theme": true
  }
}