Balint
Member
Hello,
I am able to use the Pabbly API to send a Json to create a customer in Clover but it does not bring over the customer email, phone number or address, just first and last name.
I am able to do it when i test it in their dev portal... this is what I need the Json file that is sent to contain I am assuming the issue is the way the email, phone and address needs to be written? please any help would be tremendous!
{
"firstName": "Bob",
"lastName": "Smith",
"marketingAllowed": false,
"emailAddresses": [
{
"emailAddress": "[email protected]"
}
],
"phoneNumbers": [
{
"phoneNumber": "(453)2225556"
}
],
"addresses": [
{
"address1": "132 main",
"city": "Fremont",
"state": "CA",
"zip": "94539",
"country": "US"
}
]
}
I am able to use the Pabbly API to send a Json to create a customer in Clover but it does not bring over the customer email, phone number or address, just first and last name.
I am able to do it when i test it in their dev portal... this is what I need the Json file that is sent to contain I am assuming the issue is the way the email, phone and address needs to be written? please any help would be tremendous!
{
"firstName": "Bob",
"lastName": "Smith",
"marketingAllowed": false,
"emailAddresses": [
{
"emailAddress": "[email protected]"
}
],
"phoneNumbers": [
{
"phoneNumber": "(453)2225556"
}
],
"addresses": [
{
"address1": "132 main",
"city": "Fremont",
"state": "CA",
"zip": "94539",
"country": "US"
}
]
}