Reputation: 87
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...
Upvotes: 3
Views: 764
Reputation: 4839
I'm not an expert, but it looks like -u
in curl is for authentication.
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
Upvotes: 1