Highlevel node requires email address for ‘Create or Update’ contact. Is there a way to change this so it can use just the phone number?
Information on your n8n setup
- Running n8n via n8n cloud
It looks like your topic is missing some important information. Could you provide the following if applicable.
The Highlevel API requires email for contact creation - this is an API limitation, not an n8n issue,
Add a Function node before Highlevel:
return {
json: {
...item.json,
email: item.json.phone + '@placeholder.com'
}
}
POST https://api.highlevel.com/api/contacts/lookup
Body: {"phone": "{{$json.phone}}"}
This bypasses the n8n node’s validation requirements.
This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.