Add additional fields available through Lemlist API (#2377)

This commit is contained in:
Tom 2021-11-04 05:47:41 +01:00 committed by GitHub
parent 3971e30aff
commit 2125beb216
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -124,6 +124,34 @@ export const leadFields = [
default: '', default: '',
description: 'Last name of the lead to create.', description: 'Last name of the lead to create.',
}, },
{
displayName: 'Icebreaker',
name: 'icebreaker',
type: 'string',
default: '',
description: 'Icebreaker of the lead to create.',
},
{
displayName: 'Phone',
name: 'phone',
type: 'string',
default: '',
description: 'Phone number of the lead to create.',
},
{
displayName: 'Picture URL',
name: 'picture',
type: 'string',
default: '',
description: 'Picture url of the lead to create.',
},
{
displayName: 'LinkedIn URL',
name: 'linkedinUrl',
type: 'string',
default: '',
description: 'LinkedIn url of the lead to create.',
},
], ],
}, },