List WooCommerce Order Notes
woocommerce_list_order_notesRetrieve internal or customer notes for a WooCommerce order. Filter by type (any, internal, customer) and get details like author, date, content, and visibility in markdown or JSON format.
Instructions
List the internal/customer notes attached to an order (e.g. fulfillment updates, payment gateway logs).
Args:
order_id (number, required)
type: 'any'|'customer'|'internal' (default: any)
response_format ('markdown'|'json'): default 'markdown'
Returns: list of notes with id, author, date, content, and whether it's customer-visible.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| type | No | Filter by note type (default: any) | any |
| order_id | Yes | The numeric WooCommerce order ID | |
| response_format | No | Output format: 'markdown' for human-readable text or 'json' for machine-readable structured data | markdown |