Alexander

Results 1 issues of Alexander

```typescript const clientBrevo = new ContactsApi(); clientBrevo.setApiKey( ContactsApiApiKeys.apiKey, client.options.brevo.apiKey ); await clientBrevo.createContact({ email, attributes: { VORNAME: firstName, NACHNAME: lastName, FIRMA: company, }, listIds: client.options.brevo.listId .split(',') .map((id) => parseInt(id, 10)), updateEnabled:...