curl --request PUT \
--url https://service-sandbox.tazapay.com/v3/customer/ \
--header 'Authorization: Basic <encoded-value>' \
--header 'Content-Type: application/json' \
--data '
{
"phone": {
"calling_code": "1",
"number": "9876543210"
},
"billing": [
{
"name": "Andrew Robin",
"address": {
"line1": "9th West",
"line2": "57th Street",
"city": "New York",
"state": "New York",
"country": "US",
"postal_code": "10019"
},
"phone": {
"calling_code": "1",
"number": "9876543210"
}
}
],
"shipping": [
{
"name": "Andrew Robin",
"address": {
"line1": "9th West",
"line2": "57th Street",
"city": "New York",
"state": "New York",
"country": "US",
"postal_code": "10019"
},
"phone": {
"calling_code": "1",
"number": "9876543210"
}
}
],
"metadata": {
"key1": "value1",
"key2": "value2"
}
}
'