#matt-customer-taxids
1 messages · Page 1 of 1 (latest)
I tried to add ta_id_data as paramaters in the POST /customer endpoint in php. For instance
....,'tax_id_data' => [
'type' => 'eu_vat,
'value' => 'FR123456789'
],
but it says me "param": "tax_id_data", Invalid array
https://stripe.com/docs/api/customers/create#create_customer-tax_id_data it's an "array of hashes"
you need an array or arrays in PHP
matt-customer-taxids
Yes but I cant figure the way he wants it
['tax_id_data' => ['type' => 'eu_vat', value' => 'FR123456789']]
[
'type' => 'eu_vat',
value' => 'FR123456789',
]
]```