Skip to content
Advertisement

How do I insert meta data to my customers in woocommerce using an object array?

Hi I am trying to use the woocommerce API and do post requests of customer data and adding an internal customer ID.

Here is my data

I have tried to pass this data through a post request

JavaScript

Below is the response when I commented out the meta data. But as you can see there is a meta data array.

JavaScript

But when I try to pass the proceed_id I get an error.This is the error

JavaScript

Do I need to register the meta data? Or am I missing something else?

UPDATE 1:

I’ve tried to change the way I structure my meta_data to this:

JavaScript

It seems to be not throwing an error with array type now, but I am getting a notice :

Notice: Undefined index: key in wp-content/plugins/woocommerce/includes/rest-api/Controllers/Version2/class-wc-rest-customers-v2-controller.php on line 106

Advertisement

Answer

JavaScript

This method worked. Since the documentation categorizes meta_data as an array instead of an object. You need to pass it as such. Found the answer here: https://github.com/claudiosanches/woocommerce-extra-checkout-fields-for-brazil/issues/56

Full parms :

JavaScript
User contributions licensed under: CC BY-SA
10 People found this is helpful
Advertisement