Hello,
I am working on developing a Custom Function in Flow that creates or updates a salesorder in Zoho Inventory based on a trigger from Shopify. But when I try to put the Map for billing address, I get the follow error:
"shopB2CZohoSO_1": {
"code": 15,
"message": "Please ensure that the billing_address has less than 100 characters."
}
The sales order map I am using is below for reference. Is there something I am doing wrong in placing the billing address map within the larger order map?
{
"line_items": [
],
"customer_id": 1230669000007110039,
"salesorder_number": "#EC7484",
"billing_address": {
"address": "40 51st Ave",
"zip": 10011,
"city": "New York",
"country": "USA",
"state": "NY",
"phone": 2126840000,
"attention": "Christopher W"
},
"shipping_address": {
"address": "40 51st Ave",
"zip": 10011,
"city": "New York",
"country": "USA",
"state": "NY",
"phone": 2126840000,
"attention": "Christopher W"
}
}