I am performing Axios put request to change the status of an order through Woocommerce REST API. I tried different patterns but I am getting 404 error. This is my request
axios.put('https://staging/wp-json/wc/v3/orders/1977/consumer_key=123&consumer_secret=456',
{status: "completed"});
I tried this also
axios.put('https://staging/wp-json/wc/v3/orders/1977/consumer_key=123&consumer_secret=456/"Content-Type: application/json"',
{status: "completed"});
This is from API documentation
curl -X PUT https://example.com/wp-json/wc/v3/orders/727 \
-u consumer_key:consumer_secret \
-H "Content-Type: application/json" \
-d '{
"status": "completed"
}'
Where am I doing wrong? Any suggestions please...
I'm not an expert, but it looks like -u in curl is for authentication.
cUrls's option “-u”
Assuming it's Basic authentication, I would try the below.
You'll have to replace "123" and "456" with your credentials.
axios.put('https://staging/wp-json/wc/v3/orders/1977',
{
status: "completed"
},
{
headers: {
Authorization: "Basic " + btoa("123" + ":" + "456")
}
});
You should make sure that you've:
Added the domain to the url
Removed the credentials from the url
Made sure an order exists for that id
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With