Hello,
Following your suggestion, I replaced the previous formula with the following:
Office365Outlook.ContactGetItemsV2("contacts").value
However, after making this change, the field displays the following error:
Office3650utlook.ContactGetItemsV2
{
"error": {
"code": "ErrorInvalidIdMalformed",
"message": "Id is malformed."
}
}
The current formula, which is working but does not return the contact lists I created in Outlook, is:
If(!IsBlank(Trim(EmailCc.Text)),
'Office365Users'.SearchUser(
{ searchTerm: Trim(EmailCc.Text), top: 15 }
)
)
Could you help me understand the reason for this error and how to correct the formula to properly retrieve the contacts created in Outlook?