I am trying to do an upsert all of my accounts between airtable and salesloft using the search function of airtable and the http module.
I can’t figure out how to properly map an object - “custom_fields” inside the http module. All of the other fields map work properly when i do them one by one, but I can’t figure out how to get the custom fields to work.
Any help is appreciated as this is something I need to understand how to do!
Here is the info I am looking to map, and it works great other than the custom fields.
{
name: {{3.business_name}},
phone: {{3.business_phone}},
website: https://salesloft.com,
street: {{3.business_address_01}} {{3.business_address_02}},
city: {{3.business_city}},
state: {{3.business_state}},
postal_code: {{3.business_zip}},
country: {{3.business_country}},
description: {{3.company_description}},
“domain: {{3.domain}},
company_type: Private,
upsert_key: “id”,
id: {{3.salesloft_account_id}},
custom_fields: {
company_stage_id: {{3.salesloft_stage_id}},
airtable_id: {{3.id}}
}
}
Salesloft API: