Hello there!
So, I have succesfully created an api conector that creates contacts in Aircall. But, I need to create those contacts with phone number, which happens to be, it’s a “list parameter” and as a non-coder, I don’t know how to do that.
Here is the contact object in Aircall
{
“id”: 789,
“direct_link”: “https://api.aircall.io/v1/contacts/789”,
“first_name”: “John”,
“last_name”: “Doe”,
“company_name”: “Acme”,
“information”: “”,
“phone_numbers”: [
{
“label”: “Work”,
“value”: “+33631000000”
}
],
“emails”: [
{
“label”: “Work”,
“value”: “john.doe@something.io”
}
]
}
And, Here is how I have set up the api connector
So in the workflow, I have it setted up like this, which creates the contact, but with no phone numbers in Aircall
Please bubblers, I’m sure it’s somethig simple (not for me obviously hahaha)