Brevo
Brevo is an email marketing platform that offers a cloud-based marketing communication software suite with transactional email, marketing automation, customer-relationship management and more.
Categories: marketing-automation
Type: brevo/v1
Connections
Version: 1
API Key
Properties
Name | Label | Type | Description | Required |
---|---|---|---|---|
key | Key | STRING | true | |
value | API key | STRING | true |
Actions
Create Contact
Name: createContact
Creates new contact.
Properties
Name | Label | Type | Description | Required |
---|---|---|---|---|
STRING | Email address of the contact. | true | ||
FIRSTNAME | First Name | STRING | First name of the contact. | false |
LASTNAME | Last Name | STRING | Last name of the contact. | false |
Example JSON Structure
{ "label" : "Create Contact", "name" : "createContact", "parameters" : { "email" : "", "FIRSTNAME" : "", "LASTNAME" : "" }, "type" : "brevo/v1/createContact"}
Output
Type: OBJECT
Properties
Name | Type | Description |
---|---|---|
id | INTEGER | ID of the created contact. |
Output Example
{ "id" : 1}
Update Contact
Name: updateContact
Updates existing contact.
Properties
Name | Label | Type | Description | Required |
---|---|---|---|---|
STRING | Email address of the contact to update. | true | ||
FIRSTNAME | First Name | STRING | New first name of the contact. | false |
LASTNAME | Last Name | STRING | New last name of the contact. | false |
Example JSON Structure
{ "label" : "Update Contact", "name" : "updateContact", "parameters" : { "email" : "", "FIRSTNAME" : "", "LASTNAME" : "" }, "type" : "brevo/v1/updateContact"}
Output
This action does not produce any output.
Send Transactional Email
Name: sendTransactionalEmail
Sends and email from your Brevo account.
Properties
Name | Label | Type | Description | Required |
---|---|---|---|---|
senderEmail | Sender Email | STRING | Email of the sender from which the emails will be sent. | true |
to | To Recipients | ARRAY Items[STRING] | The To: recipients for the message. | true |
bcc | Bcc Recipients | ARRAY Items[STRING] | The Bcc recipients for the message. | false |
cc | Cc Recipients | ARRAY Items[STRING] | The Cc recipients for the message. | false |
subject | Subject | STRING | Subject of the email. | true |
contentType | Content Type | STRING OptionsTEXT, HTML | Content type of the email. | true |
content | Text Content | STRING | Plain text body of the message. | true |
content | HTML Content | STRING | HTML body of the message. | true |
Example JSON Structure
{ "label" : "Send Transactional Email", "name" : "sendTransactionalEmail", "parameters" : { "senderEmail" : "", "to" : [ "" ], "bcc" : [ "" ], "cc" : [ "" ], "subject" : "", "contentType" : "", "content" : "" }, "type" : "brevo/v1/sendTransactionalEmail"}
Output
Type: OBJECT
Properties
Name | Type | Description |
---|---|---|
messageId | STRING | Message ID of the transactional email sent. |
Output Example
{ "messageId" : ""}