Created
April 23, 2024 08:13
-
-
Save sburlot/497ca6208153bddd10fca62b03f8534d to your computer and use it in GitHub Desktop.
Get number of today sales from WooCommerce
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# you'll need jq installed | |
# and keys for WooCommerce API access | |
# | |
# Stephan Burlot coriolis.ch Apr 2024 | |
# | |
curl -s "https://example.ch/wp-json/wc/v3/orders?\ | |
consumer_key=ck_CONSUMER_KEY&\ | |
consumer_secret=cs_SECRET_KEY&\ | |
after=$(date '+%Y-%m-%dT00:00:00')" | \ | |
jq '. | length' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment