1. Home
  2. Ecommerce Rest Api
  3. WordPress WooCommerce
  4. System Status

System Status

Prerequisites

  • WooCommerce API Keys: You need Consumer Key and Consumer Secret.
  • Base URL: Replace https://yourstore.com with your actual WooCommerce store URL.
  • Authorization: Basic Auth with your Consumer Key and Consumer Secret.

Authorization Setup in Postman

  1. Go to the Authorization tab.
  2. Select Type: Basic Auth.
  3. Username: Enter your Consumer Key.
  4. Password: Enter your Consumer Secret.

Retrieve System Status

  • URL: https://yourstore.com/wp-json/wc/v3/system_status
  • Method: GET
  • Headers:
    • Authorization: Basic Auth

Example in Postman:

  1. Set method to GET.
  2. Enter URL: https://yourstore.com/wp-json/wc/v3/system_status
  3. Go to the Authorization tab and set Type to Basic Auth.
  4. Enter Consumer Key and Consumer Secret.
  5. Send the request.

Explanation

  • GET /wp-json/wc/v3/system_status: This endpoint retrieves the system status information for your WooCommerce store. It provides details such as database version, WordPress environment details, active plugins, server information, and more. This information is useful for diagnosing issues or understanding the current state of your WooCommerce setup.

How can we help?