Lets say for example I create additional fields for customer using admin console
config>Additional Fields> Customers
I create my additional field
fieldname = stripeid
fieldtitle = stripeid
I notice this API command doesn’t work
$customersinfoApiUrl = “admin/customers/customer-info”;
print “Input STRIPE_ID\n”;
$result = $api->api_call_put($customersinfoApiUrl, $CustomerId,
array(
‘stripeid’ => ‘cus_xjhfjdfjsdhxj’,
));
If I use the same API call to update 'passport’
It does work.