curl --location --request POST 'https://2e3e-2806-2f0-7420-fa6f-bc65-bc42-a43-ce7f.ngrok-free.app/shopify/customers' \
--header 'Content-Type: application/json' \
--data-raw '{
"customer": {
"first_name": "Angelo",
"last_name": "Luna",
"email": "angelo@example.com",
"phone": "+573001112233",
"verified_email": true,
"addresses": [
{
"address1": "Calle 123",
"city": "Barranquilla",
"province": "Atlántico",
"phone": "3001112233",
"zip": "080001",
"last_name": "Luna",
"first_name": "Angelo",
"country": "Colombia"
}
],
"accepts_marketing": false
}
}'