Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

brevo-ruby

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

brevo-ruby

  • 1.0.0
  • Rubygems
  • Socket score

Version published
Maintainers
1
Created
Source

Brevo's API v3 Ruby Library

Brevo's API exposes the entire Brevo features via a standardized programmatic interface. Please refer to the full documentation to learn more.

This is the wrapper for the API. It implements all the features of the API v3.

Brevo's API matches the OpenAPI v2 definition. The specification can be downloaded here.

This RUBY package is automatically generated by the Swagger Codegen project and is reviewed and maintained by Brevo:

  • API version: 3.0.0
  • Build package: io.swagger.codegen.languages.RubyClientCodegen For more information, please visit https://account.brevo.com/support

Installation

Build a gem

Add this line to your application's Gemfile:

gem 'brevo-ruby'

And then execute:

$ bundle

Or install it yourself as:

$ ( sudo ) gem install brevo-ruby

Install from Git

If the Ruby gem is hosted at a git repository: https://github.com/GIT_USER_ID/GIT_REPO_ID, then add the following in the Gemfile:

gem 'brevo-ruby', :git => 'https://github.com/GIT_USER_ID/GIT_REPO_ID.git'

Include the Ruby code directly

Include the Ruby code directly using -I as follows:

ruby -Ilib script.rb

Getting Started

Please follow the installation procedure and then run the following code:

# Load the gem
require 'brevo-ruby'

# Setup authorization
BrevoRuby.configure do |config|
  # Configure API key authorization: api-key
  config.api_key['api-key'] = 'YOUR API KEY'
  # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
  #config.api_key_prefix['api-key'] = 'Bearer'

  # Configure API key authorization: partner-key
  config.api_key['partner-key'] = 'YOUR API KEY'
  # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
  #config.api_key_prefix['partner-key'] = 'Bearer'
end

api_instance = BrevoRuby::AccountApi.new

begin
  #Get your account information, plan and credits details
  result = api_instance.get_account
  p result
rescue BrevoRuby::ApiError => e
  puts "Exception when calling AccountApi->get_account: #{e}"
end

Documentation for API Endpoints

All URIs are relative to https://api.brevo.com/v3

ClassMethodHTTP requestDescription
BrevoRuby::AccountApiget_accountGET /accountGet your account information, plan and credits details
BrevoRuby::AccountApiget_account_activityGET /organization/activitiesGet user activity logs
BrevoRuby::CompaniesApicompanies_attributes_getGET /companies/attributesGet company attributes
BrevoRuby::CompaniesApicompanies_getGET /companiesGet all companies
BrevoRuby::CompaniesApicompanies_id_deleteDELETE /companies/{id}Delete a company
BrevoRuby::CompaniesApicompanies_id_getGET /companies/{id}Get a company
BrevoRuby::CompaniesApicompanies_id_patchPATCH /companies/{id}Update a company
BrevoRuby::CompaniesApicompanies_link_unlink_id_patchPATCH /companies/link-unlink/{id}Link and Unlink company with contacts and deals
BrevoRuby::CompaniesApicompanies_postPOST /companiesCreate a company
BrevoRuby::ContactsApiadd_contact_to_listPOST /contacts/lists/{listId}/contacts/addAdd existing contacts to a list
BrevoRuby::ContactsApicreate_attributePOST /contacts/attributes/{attributeCategory}/{attributeName}Create contact attribute
BrevoRuby::ContactsApicreate_contactPOST /contactsCreate a contact
BrevoRuby::ContactsApicreate_doi_contactPOST /contacts/doubleOptinConfirmationCreate Contact via DOI (Double-Opt-In) Flow
BrevoRuby::ContactsApicreate_folderPOST /contacts/foldersCreate a folder
BrevoRuby::ContactsApicreate_listPOST /contacts/listsCreate a list
BrevoRuby::ContactsApidelete_attributeDELETE /contacts/attributes/{attributeCategory}/{attributeName}Delete an attribute
BrevoRuby::ContactsApidelete_contactDELETE /contacts/{identifier}Delete a contact
BrevoRuby::ContactsApidelete_folderDELETE /contacts/folders/{folderId}Delete a folder (and all its lists)
BrevoRuby::ContactsApidelete_listDELETE /contacts/lists/{listId}Delete a list
BrevoRuby::ContactsApiget_attributesGET /contacts/attributesList all attributes
BrevoRuby::ContactsApiget_contact_infoGET /contacts/{identifier}Get a contact's details
BrevoRuby::ContactsApiget_contact_statsGET /contacts/{identifier}/campaignStatsGet email campaigns' statistics for a contact
BrevoRuby::ContactsApiget_contactsGET /contactsGet all the contacts
BrevoRuby::ContactsApiget_contacts_from_listGET /contacts/lists/{listId}/contactsGet contacts in a list
BrevoRuby::ContactsApiget_folderGET /contacts/folders/{folderId}Returns a folder's details
BrevoRuby::ContactsApiget_folder_listsGET /contacts/folders/{folderId}/listsGet lists in a folder
BrevoRuby::ContactsApiget_foldersGET /contacts/foldersGet all folders
BrevoRuby::ContactsApiget_listGET /contacts/lists/{listId}Get a list's details
BrevoRuby::ContactsApiget_listsGET /contacts/listsGet all the lists
BrevoRuby::ContactsApiget_segmentsGET /contacts/segmentsGet all the Segments
BrevoRuby::ContactsApiimport_contactsPOST /contacts/importImport contacts
BrevoRuby::ContactsApiremove_contact_from_listPOST /contacts/lists/{listId}/contacts/removeDelete a contact from a list
BrevoRuby::ContactsApirequest_contact_exportPOST /contacts/exportExport contacts
BrevoRuby::ContactsApiupdate_attributePUT /contacts/attributes/{attributeCategory}/{attributeName}Update contact attribute
BrevoRuby::ContactsApiupdate_batch_contactsPOST /contacts/batchUpdate multiple contacts
BrevoRuby::ContactsApiupdate_contactPUT /contacts/{identifier}Update a contact
BrevoRuby::ContactsApiupdate_folderPUT /contacts/folders/{folderId}Update a folder
BrevoRuby::ContactsApiupdate_listPUT /contacts/lists/{listId}Update a list
BrevoRuby::ConversationsApiconversations_agent_online_ping_postPOST /conversations/agentOnlinePingSets agent’s status to online for 2-3 minutes
BrevoRuby::ConversationsApiconversations_messages_id_deleteDELETE /conversations/messages/{id}Delete a message sent by an agent
BrevoRuby::ConversationsApiconversations_messages_id_getGET /conversations/messages/{id}Get a message
BrevoRuby::ConversationsApiconversations_messages_id_putPUT /conversations/messages/{id}Update a message sent by an agent
BrevoRuby::ConversationsApiconversations_messages_postPOST /conversations/messagesSend a message as an agent
BrevoRuby::ConversationsApiconversations_pushed_messages_id_deleteDELETE /conversations/pushedMessages/{id}Delete an automated message
BrevoRuby::ConversationsApiconversations_pushed_messages_id_getGET /conversations/pushedMessages/{id}Get an automated message
BrevoRuby::ConversationsApiconversations_pushed_messages_id_putPUT /conversations/pushedMessages/{id}Update an automated message
BrevoRuby::ConversationsApiconversations_pushed_messages_postPOST /conversations/pushedMessagesSend an automated message to a visitor
BrevoRuby::CouponsApicreate_coupon_collectionPOST /couponCollectionsCreate а coupon collection
BrevoRuby::CouponsApicreate_couponsPOST /couponsCreate coupons for a coupon collection
BrevoRuby::CouponsApiget_coupon_collectionGET /couponCollections/{id}Get a coupon collection by id
BrevoRuby::CouponsApiget_coupon_collectionsGET /couponCollectionsGet all your coupon collections
BrevoRuby::CouponsApiupdate_coupon_collectionPATCH /couponCollections/{id}Update a coupon collection by id
BrevoRuby::DealsApicrm_attributes_deals_getGET /crm/attributes/dealsGet deal attributes
BrevoRuby::DealsApicrm_deals_getGET /crm/dealsGet all deals
BrevoRuby::DealsApicrm_deals_id_deleteDELETE /crm/deals/{id}Delete a deal
BrevoRuby::DealsApicrm_deals_id_getGET /crm/deals/{id}Get a deal
BrevoRuby::DealsApicrm_deals_id_patchPATCH /crm/deals/{id}Update a deal
BrevoRuby::DealsApicrm_deals_link_unlink_id_patchPATCH /crm/deals/link-unlink/{id}Link and Unlink a deal with contacts and companies
BrevoRuby::DealsApicrm_deals_postPOST /crm/dealsCreate a deal
BrevoRuby::DealsApicrm_pipeline_details_getGET /crm/pipeline/detailsGet pipeline stages
BrevoRuby::DealsApicrm_pipeline_details_pipeline_id_getGET /crm/pipeline/details/{pipelineID}Get pipelines and their details
BrevoRuby::DomainsApiauthenticate_domainPUT /senders/domains/{domainName}/authenticateAuthenticate a domain
BrevoRuby::DomainsApicreate_domainPOST /senders/domainsCreate a new domain
BrevoRuby::DomainsApidelete_domainDELETE /senders/domains/{domainName}Delete a domain
BrevoRuby::DomainsApiget_domain_configurationGET /senders/domains/{domainName}Validate domain configuration
BrevoRuby::DomainsApiget_domainsGET /senders/domainsGet the list of all your domains
BrevoRuby::EcommerceApicreate_batch_orderPOST /orders/status/batchCreate orders in batch
BrevoRuby::EcommerceApicreate_orderPOST /orders/statusManaging the status of the order
BrevoRuby::EcommerceApicreate_update_batch_categoryPOST /categories/batchCreate categories in batch
BrevoRuby::EcommerceApicreate_update_batch_productsPOST /products/batchCreate products in batch
BrevoRuby::EcommerceApicreate_update_categoryPOST /categoriesCreate/Update a category
BrevoRuby::EcommerceApicreate_update_productPOST /productsCreate/Update a product
BrevoRuby::EcommerceApiecommerce_activate_postPOST /ecommerce/activateActivate the eCommerce app
BrevoRuby::EcommerceApiget_categoriesGET /categoriesReturn all your categories
BrevoRuby::EcommerceApiget_category_infoGET /categories/{id}Get a category details
BrevoRuby::EcommerceApiget_product_infoGET /products/{id}Get a product's details
BrevoRuby::EcommerceApiget_productsGET /productsReturn all your products
BrevoRuby::EmailCampaignsApicreate_email_campaignPOST /emailCampaignsCreate an email campaign
BrevoRuby::EmailCampaignsApidelete_email_campaignDELETE /emailCampaigns/{campaignId}Delete an email campaign
BrevoRuby::EmailCampaignsApiemail_export_recipientsPOST /emailCampaigns/{campaignId}/exportRecipientsExport the recipients of an email campaign
BrevoRuby::EmailCampaignsApiget_ab_test_campaign_resultGET /emailCampaigns/{campaignId}/abTestCampaignResultGet an A/B test email campaign results
BrevoRuby::EmailCampaignsApiget_email_campaignGET /emailCampaigns/{campaignId}Get an email campaign report
BrevoRuby::EmailCampaignsApiget_email_campaignsGET /emailCampaignsReturn all your created email campaigns
BrevoRuby::EmailCampaignsApiget_shared_template_urlGET /emailCampaigns/{campaignId}/sharedUrlGet a shared template url
BrevoRuby::EmailCampaignsApisend_email_campaign_nowPOST /emailCampaigns/{campaignId}/sendNowSend an email campaign immediately, based on campaignId
BrevoRuby::EmailCampaignsApisend_reportPOST /emailCampaigns/{campaignId}/sendReportSend the report of a campaign
BrevoRuby::EmailCampaignsApisend_test_emailPOST /emailCampaigns/{campaignId}/sendTestSend an email campaign to your test list
BrevoRuby::EmailCampaignsApiupdate_campaign_statusPUT /emailCampaigns/{campaignId}/statusUpdate an email campaign status
BrevoRuby::EmailCampaignsApiupdate_email_campaignPUT /emailCampaigns/{campaignId}Update an email campaign
BrevoRuby::EmailCampaignsApiupload_image_to_galleryPOST /emailCampaigns/imagesUpload an image to your account's image gallery
BrevoRuby::ExternalFeedsApicreate_external_feedPOST /feedsCreate an external feed
BrevoRuby::ExternalFeedsApidelete_external_feedDELETE /feeds/{uuid}Delete an external feed
BrevoRuby::ExternalFeedsApiget_all_external_feedsGET /feedsFetch all external feeds
BrevoRuby::ExternalFeedsApiget_external_feed_by_uuidGET /feeds/{uuid}Get an external feed by UUID
BrevoRuby::ExternalFeedsApiupdate_external_feedPUT /feeds/{uuid}Update an external feed
BrevoRuby::FilesApicrm_files_getGET /crm/filesGet all files
BrevoRuby::FilesApicrm_files_id_data_getGET /crm/files/{id}/dataGet file details
BrevoRuby::FilesApicrm_files_id_deleteDELETE /crm/files/{id}Delete a file
BrevoRuby::FilesApicrm_files_id_getGET /crm/files/{id}Download a file
BrevoRuby::FilesApicrm_files_postPOST /crm/filesUpload a file
BrevoRuby::InboundParsingApiget_inbound_email_attachmentGET /inbound/attachments/{downloadToken}Retrieve inbound attachment with download token.
BrevoRuby::InboundParsingApiget_inbound_email_eventsGET /inbound/eventsGet the list of all the events for the received emails.
BrevoRuby::InboundParsingApiget_inbound_email_events_by_uuidGET /inbound/events/{uuid}Fetch all events history for one particular received email.
BrevoRuby::MasterAccountApicorporate_master_account_getGET /corporate/masterAccountGet the details of requested master account
BrevoRuby::MasterAccountApicorporate_sub_account_getGET /corporate/subAccountGet the list of all the sub-accounts of the master account.
BrevoRuby::MasterAccountApicorporate_sub_account_id_deleteDELETE /corporate/subAccount/{id}Delete a sub-account
BrevoRuby::MasterAccountApicorporate_sub_account_id_getGET /corporate/subAccount/{id}Get sub-account details
BrevoRuby::MasterAccountApicorporate_sub_account_id_plan_putPUT /corporate/subAccount/{id}/planUpdate sub-account plan
BrevoRuby::MasterAccountApicorporate_sub_account_key_postPOST /corporate/subAccount/keyCreate an API key for a sub-account
BrevoRuby::MasterAccountApicorporate_sub_account_postPOST /corporate/subAccountCreate a new sub-account under a master account.
BrevoRuby::MasterAccountApicorporate_sub_account_sso_token_postPOST /corporate/subAccount/ssoTokenGenerate SSO token to access Brevo
BrevoRuby::MasterAccountApiget_account_activityGET /organization/activitiesGet user activity logs
BrevoRuby::NotesApicrm_notes_getGET /crm/notesGet all notes
BrevoRuby::NotesApicrm_notes_id_deleteDELETE /crm/notes/{id}Delete a note
BrevoRuby::NotesApicrm_notes_id_getGET /crm/notes/{id}Get a note
BrevoRuby::NotesApicrm_notes_id_patchPATCH /crm/notes/{id}Update a note
BrevoRuby::NotesApicrm_notes_postPOST /crm/notesCreate a note
BrevoRuby::ProcessApiget_processGET /processes/{processId}Return the informations for a process
BrevoRuby::ProcessApiget_processesGET /processesReturn all the processes for your account
BrevoRuby::ResellerApiadd_creditsPOST /reseller/children/{childIdentifier}/credits/addAdd Email and/or SMS credits to a specific child account
BrevoRuby::ResellerApiassociate_ip_to_childPOST /reseller/children/{childIdentifier}/ips/associateAssociate a dedicated IP to the child
BrevoRuby::ResellerApicreate_child_domainPOST /reseller/children/{childIdentifier}/domainsCreate a domain for a child account
BrevoRuby::ResellerApicreate_reseller_childPOST /reseller/childrenCreates a reseller child
BrevoRuby::ResellerApidelete_child_domainDELETE /reseller/children/{childIdentifier}/domains/{domainName}Delete the sender domain of the reseller child based on the childIdentifier and domainName passed
BrevoRuby::ResellerApidelete_reseller_childDELETE /reseller/children/{childIdentifier}Delete a single reseller child based on the child identifier supplied
BrevoRuby::ResellerApidissociate_ip_from_childPOST /reseller/children/{childIdentifier}/ips/dissociateDissociate a dedicated IP to the child
BrevoRuby::ResellerApiget_child_account_creation_statusGET /reseller/children/{childIdentifier}/accountCreationStatusGet the status of a reseller's child account creation, whether it is successfully created (exists) or not based on the identifier supplied
BrevoRuby::ResellerApiget_child_domainsGET /reseller/children/{childIdentifier}/domainsGet all sender domains for a specific child account
BrevoRuby::ResellerApiget_child_infoGET /reseller/children/{childIdentifier}Get a child account's details
BrevoRuby::ResellerApiget_reseller_childsGET /reseller/childrenGet the list of all children accounts
BrevoRuby::ResellerApiget_sso_tokenGET /reseller/children/{childIdentifier}/authGet session token to access Brevo (SSO)
BrevoRuby::ResellerApiremove_creditsPOST /reseller/children/{childIdentifier}/credits/removeRemove Email and/or SMS credits from a specific child account
BrevoRuby::ResellerApiupdate_child_account_statusPUT /reseller/children/{childIdentifier}/accountStatusUpdate info of reseller's child account status based on the childIdentifier supplied
BrevoRuby::ResellerApiupdate_child_domainPUT /reseller/children/{childIdentifier}/domains/{domainName}Update the sender domain of reseller's child based on the childIdentifier and domainName passed
BrevoRuby::ResellerApiupdate_reseller_childPUT /reseller/children/{childIdentifier}Update info of reseller's child based on the child identifier supplied
BrevoRuby::SMSCampaignsApicreate_sms_campaignPOST /smsCampaignsCreates an SMS campaign
BrevoRuby::SMSCampaignsApidelete_sms_campaignDELETE /smsCampaigns/{campaignId}Delete an SMS campaign
BrevoRuby::SMSCampaignsApiget_sms_campaignGET /smsCampaigns/{campaignId}Get an SMS campaign
BrevoRuby::SMSCampaignsApiget_sms_campaignsGET /smsCampaignsReturns the information for all your created SMS campaigns
BrevoRuby::SMSCampaignsApirequest_sms_recipient_exportPOST /smsCampaigns/{campaignId}/exportRecipientsExport an SMS campaign's recipients
BrevoRuby::SMSCampaignsApisend_sms_campaign_nowPOST /smsCampaigns/{campaignId}/sendNowSend your SMS campaign immediately
BrevoRuby::SMSCampaignsApisend_sms_reportPOST /smsCampaigns/{campaignId}/sendReportSend an SMS campaign's report
BrevoRuby::SMSCampaignsApisend_test_smsPOST /smsCampaigns/{campaignId}/sendTestSend a test SMS campaign
BrevoRuby::SMSCampaignsApiupdate_sms_campaignPUT /smsCampaigns/{campaignId}Update an SMS campaign
BrevoRuby::SMSCampaignsApiupdate_sms_campaign_statusPUT /smsCampaigns/{campaignId}/statusUpdate a campaign's status
BrevoRuby::SendersApicreate_senderPOST /sendersCreate a new sender
BrevoRuby::SendersApidelete_senderDELETE /senders/{senderId}Delete a sender
BrevoRuby::SendersApiget_ipsGET /senders/ipsGet all the dedicated IPs for your account
BrevoRuby::SendersApiget_ips_from_senderGET /senders/{senderId}/ipsGet all the dedicated IPs for a sender
BrevoRuby::SendersApiget_sendersGET /sendersGet the list of all your senders
BrevoRuby::SendersApiupdate_senderPUT /senders/{senderId}Update a sender
BrevoRuby::SendersApivalidate_sender_by_otpPUT /senders/{senderId}/validateUpdate a sender
BrevoRuby::TasksApicrm_tasks_getGET /crm/tasksGet all tasks
BrevoRuby::TasksApicrm_tasks_id_deleteDELETE /crm/tasks/{id}Delete a task
BrevoRuby::TasksApicrm_tasks_id_getGET /crm/tasks/{id}Get a task
BrevoRuby::TasksApicrm_tasks_id_patchPATCH /crm/tasks/{id}Update a task
BrevoRuby::TasksApicrm_tasks_postPOST /crm/tasksCreate a task
BrevoRuby::TasksApicrm_tasktypes_getGET /crm/tasktypesGet all task types
BrevoRuby::TransactionalEmailsApiblock_new_domainPOST /smtp/blockedDomainsAdd a new domain to the list of blocked domains
BrevoRuby::TransactionalEmailsApicreate_smtp_templatePOST /smtp/templatesCreate an email template
BrevoRuby::TransactionalEmailsApidelete_blocked_domainDELETE /smtp/blockedDomains/{domain}Unblock an existing domain from the list of blocked domains
BrevoRuby::TransactionalEmailsApidelete_hardbouncesPOST /smtp/deleteHardbouncesDelete hardbounces
BrevoRuby::TransactionalEmailsApidelete_scheduled_email_by_idDELETE /smtp/email/{identifier}Delete scheduled emails by batchId or messageId
BrevoRuby::TransactionalEmailsApidelete_smtp_templateDELETE /smtp/templates/{templateId}Delete an inactive email template
BrevoRuby::TransactionalEmailsApiget_aggregated_smtp_reportGET /smtp/statistics/aggregatedReportGet your transactional email activity aggregated over a period of time
BrevoRuby::TransactionalEmailsApiget_blocked_domainsGET /smtp/blockedDomainsGet the list of blocked domains
BrevoRuby::TransactionalEmailsApiget_email_event_reportGET /smtp/statistics/eventsGet all your transactional email activity (unaggregated events)
BrevoRuby::TransactionalEmailsApiget_scheduled_email_by_batch_idGET /smtp/emailStatus/{batchId}Fetch scheduled emails by batchId
BrevoRuby::TransactionalEmailsApiget_scheduled_email_by_message_idGET /smtp/emailStatus/{messageId}Fetch scheduled email by messageId
BrevoRuby::TransactionalEmailsApiget_smtp_reportGET /smtp/statistics/reportsGet your transactional email activity aggregated per day
BrevoRuby::TransactionalEmailsApiget_smtp_templateGET /smtp/templates/{templateId}Returns the template information
BrevoRuby::TransactionalEmailsApiget_smtp_templatesGET /smtp/templatesGet the list of email templates
BrevoRuby::TransactionalEmailsApiget_transac_blocked_contactsGET /smtp/blockedContactsGet the list of blocked or unsubscribed transactional contacts
BrevoRuby::TransactionalEmailsApiget_transac_email_contentGET /smtp/emails/{uuid}Get the personalized content of a sent transactional email
BrevoRuby::TransactionalEmailsApiget_transac_emails_listGET /smtp/emailsGet the list of transactional emails on the basis of allowed filters
BrevoRuby::TransactionalEmailsApisend_test_templatePOST /smtp/templates/{templateId}/sendTestSend a template to your test list
BrevoRuby::TransactionalEmailsApisend_transac_emailPOST /smtp/emailSend a transactional email
BrevoRuby::TransactionalEmailsApismtp_blocked_contacts_email_deleteDELETE /smtp/blockedContacts/{email}Unblock or resubscribe a transactional contact
BrevoRuby::TransactionalEmailsApismtp_log_message_id_deleteDELETE /smtp/log/{messageId}Delete an SMTP transactional log
BrevoRuby::TransactionalEmailsApiupdate_smtp_templatePUT /smtp/templates/{templateId}Update an email template
BrevoRuby::TransactionalSMSApiget_sms_eventsGET /transactionalSMS/statistics/eventsGet all your SMS activity (unaggregated events)
BrevoRuby::TransactionalSMSApiget_transac_aggregated_sms_reportGET /transactionalSMS/statistics/aggregatedReportGet your SMS activity aggregated over a period of time
BrevoRuby::TransactionalSMSApiget_transac_sms_reportGET /transactionalSMS/statistics/reportsGet your SMS activity aggregated per day
BrevoRuby::TransactionalSMSApisend_transac_smsPOST /transactionalSMS/smsSend SMS message to a mobile number
BrevoRuby::TransactionalWhatsAppApiget_whatsapp_event_reportGET /whatsapp/statistics/eventsGet all your WhatsApp activity (unaggregated events)
BrevoRuby::TransactionalWhatsAppApisend_whatsapp_messagePOST /whatsapp/sendMessageSend a WhatsApp message
BrevoRuby::UserApiget_invited_users_listGET /organization/invited/usersGet the list of all your users
BrevoRuby::UserApiget_user_permissionGET /organization/user/{email}/permissionsCheck user permission
BrevoRuby::WebhooksApicreate_webhookPOST /webhooksCreate a webhook
BrevoRuby::WebhooksApidelete_webhookDELETE /webhooks/{webhookId}Delete a webhook
BrevoRuby::WebhooksApiexport_webhooks_historyPOST /webhooks/exportExport all transactional events
BrevoRuby::WebhooksApiget_webhookGET /webhooks/{webhookId}Get a webhook details
BrevoRuby::WebhooksApiget_webhooksGET /webhooksGet all webhooks
BrevoRuby::WebhooksApiupdate_webhookPUT /webhooks/{webhookId}Update a webhook
BrevoRuby::WhatsAppCampaignsApicreate_whats_app_campaignPOST /whatsappCampaignsCreate and Send a WhatsApp campaign
BrevoRuby::WhatsAppCampaignsApicreate_whats_app_templatePOST /whatsppCampaigns/templateCreate a WhatsApp template
BrevoRuby::WhatsAppCampaignsApidelete_whats_app_campaignDELETE /whatsappCampaigns/{campaignId}Delete a WhatsApp campaign
BrevoRuby::WhatsAppCampaignsApiget_whats_app_campaignGET /whatsappCampaigns/{campaignId}Get a WhatsApp campaign
BrevoRuby::WhatsAppCampaignsApiget_whats_app_campaignsGET /whatsappCampaignsReturn all your created WhatsApp campaigns
BrevoRuby::WhatsAppCampaignsApiget_whats_app_configGET /whatsappCampaigns/configGet your WhatsApp API account information
BrevoRuby::WhatsAppCampaignsApiget_whats_app_templatesGET /whatsappCampaigns/template-listReturn all your created WhatsApp templates
BrevoRuby::WhatsAppCampaignsApisend_whats_app_template_approvalPOST /whatsappCampaigns/template/approval/{templateId}Send your WhatsApp template for approval
BrevoRuby::WhatsAppCampaignsApiupdate_whats_app_campaignPUT /whatsappCampaigns/{campaignId}Update a WhatsApp campaign

Documentation for Models

Documentation for Authorization

api-key

  • Type: API key
  • API key parameter name: api-key
  • Location: HTTP header

partner-key

  • Type: API key
  • API key parameter name: partner-key
  • Location: HTTP header

Support and Feedback

Be sure to visit the Brevo official documentation website for additional information about our API.

If you find a bug, please post the issue on Github.

As always, if you need additional assistance, drop us a note here.

Recommendation

Please follow camelCase convention for variables in the API's. For example, use customVariable instead of custom_variable.

FAQs

Package last updated on 06 Jun 2023

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc