I will try to explain what i’m trying to achieve.
I have a software that have custom fields associated to a contact (meta data).
Example:
{
name: “John”
email: “john@j.com”,
meta: {
key1 : value
key2: value2
// the keys are not fixed
}
}
I create an action called Create Contact.
The problem is that this action is simple to map all fields that i know that exist.
But I don’t find a way to make key1 , key2 etc
There is any way i can in the Action Form create fields on demand based a API request ?
I try to use dynamic fields but this seems to be a single field i need multiple fields can be 5 , can be 50.
And I need a dynamic key for each value.
On my software is easy for me to create a api request GET /custom-fields/zapier
And get all keys.
If someone can help that would be awesome.
Thank you in advance.