Can we have Automizy Integration Node? [GOT CREATED]

Automizy.com is an ESP and has a huge customer base. Their service is good in Open Rate.

Site: Automizy.com
RestAPI Docs: Automizy Rest Api

Features Required:

  • Similar to ActiveCampaign Node and Trigger Node.

Account details shared with @RicardoE105 for testing purposes.

@mcnaveen got created. We will let you know when is released.

https://github.com/n8n-io/n8n/pull/1039

1 Like

Oh my god. :sob:

You’re faster. Thank you so much bro.

Can I have any screenshot. I’m very excited :grinning:

1 Like

@mcnaveen of course.

You’re Genius bro. Thanks Again.

And Can I add multiple custom fields?

Yes, you can dot that. Check the image below

1 Like

This is Great. :100:

Thank you so much :heartpulse:

1 Like

Got released with [email protected]

1 Like

Thanks for your all efforts :heart:

image

404 on Clicking Open Automizy Documentation

Official Documentation: Automizy Rest Api

Hey @mcnaveen!
We are working on the documentation. We will let you know as soon the documentation is ready. In the meanwhile, if you have any questions feel free to ask them! :slightly_smiling_face:

3 Likes

Hey @mcnaveen, we’ve added the documentation for the node here: Automizy | Docs

The link from your screenshot should work too now :slight_smile:

2 Likes

just wanted to say thanks - will be using this one.

4 Likes

Possible Bug: As you can see in the below screenshot, Currently, If the Tag is added via n8n to the Contact, All the Existing tags will be removed.

image

But there is a possible workaround.

We have to use addTags - String[] - The tags you want to add to the contact.

As mentioned in the link: Automizy Rest Api

Using Method: PATCH

I tested with this code.

const request = require('request');

const options = {
  method: 'PATCH',
  url: 'https://gateway.automizy.com/v2/contacts/[email protected]',
  headers: {
    Accept: 'application/json',
    'Content-Type': 'application/json',
    Authorization: 'Bearer f43197012114cd97235e8759cb0b55385'
  },
  body: {addTags: ['tag1', 'tag2']},
  json: true
};

request(options, function (error, response, body) {
  if (error) throw new Error(error);

  console.log(body);
});

@RicardoE105 Sent you account credentials in Message.

@mcnaveen got added.

1 Like

Wow. Thank you so much @RicardoE105 brother.

1 Like

Any idea on when this will be released bro? Seems your PR got merged.

In the next days. Depending on the workload even tomorrow.

1 Like

Got released with [email protected]

1 Like

This is amazing :heart: Thanks team.

Also, Please Create a Thread just for Posting Updates and Lock to Admin Only if possible. Tracking Update of n8n is quiet tough.

1 Like