') + ')', 'gi'); if (regex.test(text)) { found = true; var frag = document.createDocumentFragment(); var parts = text.split(regex); parts.forEach(function(part, i) { if (i % 2 === 0) { frag.appendChild(document.createTextNode(part)); } else { var span = document.createElement('span'); span.className = 'userscript-highlight'; span.textContent = part; frag.appendChild(span); } }); node.parentNode.replaceChild(frag, node); } }); } else if (node.nodeType === 1 && node.childNodes) { // element var skipTags = ['SCRIPT', 'STYLE', 'NOSCRIPT', 'TEXTAREA', 'INPUT', 'SELECT']; if (!skipTags.includes(node.tagName)) { Array.from(node.childNodes).forEach(highlight); } } } highlight(document.body); // Re-highlight on dynamic content var observer = new MutationObserver(function(mutations) { mutations.forEach(function(m) { m.addedNodes.forEach(function(node) { if (node.nodeType === 1 || node.nodeType === 3) highlight(node); }); }); }); observer.observe(document.body, { childList: true, subtree: true }); })(); } } catch(__e) { console.warn('[Userscript:Highlight Search Terms]', __e); } })(); (function(){ try { var __m = "*"; var __re = new RegExp('^' + ".*" + ', 'i'); if (__m === '*' || __re.test(location.href)) { // Strip utm_, fbclid, gclid, etc. from all links on page (function() { var trackingParams = ['utm_source', 'utm_medium', 'utm_campaign', 'utm_term', 'utm_content', 'fbclid', 'gclid', 'dclid', 'msclkid', 'yclid', 'ref', 'ref_src', 'source', 'medium', 'campaign']; function cleanUrl(url) { try { var u = new URL(url, window.location.origin); var changed = false; trackingParams.forEach(function(p) { if (u.searchParams.has(p)) { u.searchParams.delete(p); changed = true; } }); return changed ? u.toString() : url; } catch (e) { return url; } } function cleanLinks() { document.querySelectorAll('a[href]').forEach(function(a) { var clean = cleanUrl(a.href); if (clean !== a.href) a.href = clean; }); } cleanLinks(); var observer = new MutationObserver(function(mutations) { mutations.forEach(function(m) { m.addedNodes.forEach(function(node) { if (node.nodeType === 1) { if (node.tagName === 'A') cleanLinks(); node.querySelectorAll('a[href]').forEach(function(a) { var clean = cleanUrl(a.href); if (clean !== a.href) a.href = clean; }); } }); }); }); observer.observe(document.body, { childList: true, subtree: true }); })(); } } catch(__e) { console.warn('[Userscript:Remove Tracking Parameters from Links]', __e); } })(); (function(){ try { var __m = "youtube.com"; var __re = new RegExp('^' + "youtube\\.com" + ', 'i'); if (__m === '*' || __re.test(location.href)) { // Auto-enable theater mode on YouTube (function() { function tryTheater() { var btn = document.querySelector('button[aria-label="Theater mode"], ytd-player #player button[title="Theater mode"]'); if (btn && !btn.classList.contains('activated')) { btn.click(); } } // Try immediately tryTheater(); // Try after navigation (SPA) var lastUrl = location.href; setInterval(function() { if (location.href !== lastUrl) { lastUrl = location.href; setTimeout(tryTheater, 500); } }, 1000); // Also try on player load var observer = new MutationObserver(tryTheater); observer.observe(document.body, { childList: true, subtree: true }); })(); } } catch(__e) { console.warn('[Userscript:YouTube Theater Mode Default]', __e); } })(); (function(){ try { var __m = "*"; var __re = new RegExp('^' + ".*" + ', 'i'); if (__m === '*' || __re.test(location.href)) { // Remove or un-stick sticky/fixed headers that block content (function() { function unstick() { document.querySelectorAll('header, nav, [role="banner"], .header, .navbar, .sticky, .fixed-top, [style*="position: fixed"], [style*="position:sticky"]').forEach(function(el) { if (el.style.position === 'fixed' || el.style.position === 'sticky' || getComputedStyle(el).position === 'fixed' || getComputedStyle(el).position === 'sticky') { el.style.position = 'static'; el.style.top = 'auto'; el.style.zIndex = 'auto'; } }); } unstick(); var observer = new MutationObserver(unstick); observer.observe(document.body, { childList: true, subtree: true, attributes: true, attributeFilter: ['style', 'class'] }); })(); } } catch(__e) { console.warn('[Userscript:Kill Sticky Headers]', __e); } })(); })(); GitHub - sendinblue/APIv3-php-library: SendinBlue's API v3 Php Library · GitHub
Skip to content

Repository files navigation

[DEPRECATED:warning:] api-v3-sdk

SendinBlue's API v3 Php Library

SendinBlue's API exposes the entire SendinBlue 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.

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

This PHP package is automatically generated by the Swagger Codegen project and is reviewed and maintained by SendinBlue:

Requirements

PHP 5.6 and later

Installation & Usage

Composer

To install the bindings via Composer:

Create a composer.json file in any directory & add below code in composer.json file.

{
"require": {
"sendinblue/api-v3-sdk": "8.x.x"
}
}

Then run below commands in the same directory

composer require sendinblue/api-v3-sdk "8.x.x"

Further do:

  • run composer install to get these dependencies added to your vendor directory
  • add the autoloader to your application with this line: require("vendor/autoload.php")

Tests

To run the unit tests:

composer install
./vendor/bin/phpunit

Getting Started

Please follow the installation procedure and then run the following:

<?phprequire_once(__DIR__ . '/vendor/autoload.php');
// Configure API key authorization: api-key$config = SendinBlue\Client\Configuration::getDefaultConfiguration()->setApiKey('api-key', 'YOUR_API_KEY');
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed// $config = SendinBlue\Client\Configuration::getDefaultConfiguration()->setApiKeyPrefix('api-key', 'Bearer');// Configure API key authorization: partner-key$config = SendinBlue\Client\Configuration::getDefaultConfiguration()->setApiKey('partner-key', 'YOUR_API_KEY');
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed// $config = SendinBlue\Client\Configuration::getDefaultConfiguration()->setApiKeyPrefix('partner-key', 'Bearer');$apiInstance = newSendinBlue\Client\Api\AccountApi(
// If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.// This is optional, `GuzzleHttp\Client` will be used as default.newGuzzleHttp\Client(),
$config
);
try {
$result = $apiInstance->getAccount();
print_r($result);
} catch (Exception$e) {
echo'Exception when calling AccountApi->getAccount: ', $e->getMessage(), PHP_EOL;
}
?>

Documentation for API Endpoints

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

ClassMethodHTTP requestDescription
AccountApigetAccountGET /accountGet your account information, plan and credits details
CompaniesApicompaniesAttributesGetGET /companies/attributesGet company attributes
CompaniesApicompaniesGetGET /companiesGet all companies
CompaniesApicompaniesIdDeleteDELETE /companies/{id}Delete a company
CompaniesApicompaniesIdGetGET /companies/{id}Get a company
CompaniesApicompaniesIdPatchPATCH /companies/{id}Update a company
CompaniesApicompaniesLinkUnlinkIdPatchPATCH /companies/link-unlink/{id}Link and Unlink company with contacts and deals
CompaniesApicompaniesPostPOST /companiesCreate a company
AttributesApicreateAttributePOST /contacts/attributes/{attributeCategory}/{attributeName}Create contact attribute
AttributesApideleteAttributeDELETE /contacts/attributes/{attributeCategory}/{attributeName}Delete an attribute
AttributesApigetAttributesGET /contacts/attributesList all attributes
AttributesApiupdateAttributePUT /contacts/attributes/{attributeCategory}/{attributeName}Update contact attribute
CRMApicrmNotesGetGET /crm/notesGet all notes
CRMApicrmNotesIdDeleteDELETE /crm/notes/{id}Delete a note
CRMApicrmNotesIdGetGET /crm/notes/{id}Get a note
CRMApicrmNotesIdPatchPATCH /crm/notes/{id}Update a note
CRMApicrmNotesPostPOST /crm/notesCreate a note
CRMApicrmTasksGetGET /crm/tasksGet all tasks
CRMApicrmTasksIdDeleteDELETE /crm/tasks/{id}Delete a task
CRMApicrmTasksIdGetGET /crm/tasks/{id}Get a task
CRMApicrmTasksIdPatchPATCH /crm/tasks/{id}Update a task
CRMApicrmTasksPostPOST /crm/tasksCreate a task
CRMApicrmTasktypesGetGET /crm/tasktypesGet all task types
ContactsApiaddContactToListPOST /contacts/lists/{listId}/contacts/addAdd existing contacts to a list
ContactsApicreateAttributePOST /contacts/attributes/{attributeCategory}/{attributeName}Create contact attribute
ContactsApicreateContactPOST /contactsCreate a contact
ContactsApicreateDoiContactPOST /contacts/doubleOptinConfirmationCreate Contact via DOI (Double-Opt-In) Flow
ContactsApicreateFolderPOST /contacts/foldersCreate a folder
ContactsApicreateListPOST /contacts/listsCreate a list
ContactsApideleteAttributeDELETE /contacts/attributes/{attributeCategory}/{attributeName}Delete an attribute
ContactsApideleteContactDELETE /contacts/{identifier}Delete a contact
ContactsApideleteFolderDELETE /contacts/folders/{folderId}Delete a folder (and all its lists)
ContactsApideleteListDELETE /contacts/lists/{listId}Delete a list
ContactsApigetAttributesGET /contacts/attributesList all attributes
ContactsApigetContactInfoGET /contacts/{identifier}Get a contact's details
ContactsApigetContactStatsGET /contacts/{identifier}/campaignStatsGet email campaigns' statistics for a contact
ContactsApigetContactsGET /contactsGet all the contacts
ContactsApigetContactsFromListGET /contacts/lists/{listId}/contactsGet contacts in a list
ContactsApigetFolderGET /contacts/folders/{folderId}Returns a folder's details
ContactsApigetFolderListsGET /contacts/folders/{folderId}/listsGet lists in a folder
ContactsApigetFoldersGET /contacts/foldersGet all folders
ContactsApigetListGET /contacts/lists/{listId}Get a list's details
ContactsApigetListsGET /contacts/listsGet all the lists
ContactsApiimportContactsPOST /contacts/importImport contacts
ContactsApiremoveContactFromListPOST /contacts/lists/{listId}/contacts/removeDelete a contact from a list
ContactsApirequestContactExportPOST /contacts/exportExport contacts
ContactsApiupdateAttributePUT /contacts/attributes/{attributeCategory}/{attributeName}Update contact attribute
ContactsApiupdateBatchContactsPOST /contacts/batchUpdate multiple contacts
ContactsApiupdateContactPUT /contacts/{identifier}Update a contact
ContactsApiupdateFolderPUT /contacts/folders/{folderId}Update a folder
ContactsApiupdateListPUT /contacts/lists/{listId}Update a list
ConversationsApiconversationsAgentOnlinePingPostPOST /conversations/agentOnlinePingSets agent’s status to online for 2-3 minutes
ConversationsApiconversationsMessagesIdDeleteDELETE /conversations/messages/{id}Delete a message sent by an agent
ConversationsApiconversationsMessagesIdGetGET /conversations/messages/{id}Get a message
ConversationsApiconversationsMessagesIdPutPUT /conversations/messages/{id}Update a message sent by an agent
ConversationsApiconversationsMessagesPostPOST /conversations/messagesSend a message as an agent
ConversationsApiconversationsPushedMessagesIdDeleteDELETE /conversations/pushedMessages/{id}Delete an automated message
ConversationsApiconversationsPushedMessagesIdGetGET /conversations/pushedMessages/{id}Get an automated message
ConversationsApiconversationsPushedMessagesIdPutPUT /conversations/pushedMessages/{id}Update an automated message
ConversationsApiconversationsPushedMessagesPostPOST /conversations/pushedMessagesSend an automated message to a visitor
DealsApicrmAttributesDealsGetGET /crm/attributes/dealsGet deal attributes
DealsApicrmDealsGetGET /crm/dealsGet all deals
DealsApicrmDealsIdDeleteDELETE /crm/deals/{id}Delete a deal
DealsApicrmDealsIdGetGET /crm/deals/{id}Get a deal
DealsApicrmDealsIdPatchPATCH /crm/deals/{id}Update a deal
DealsApicrmDealsLinkUnlinkIdPatchPATCH /crm/deals/link-unlink/{id}Link and Unlink a deal with contacts and companies
DealsApicrmDealsPostPOST /crm/dealsCreate a deal
DealsApicrmPipelineDetailsGetGET /crm/pipeline/detailsGet pipeline stages
EcommerceApicreateBatchOrderPOST /orders/status/batchCreate orders in batch
EcommerceApicreateOrderPOST /orders/statusManaging the status of the order
EcommerceApicreateUpdateBatchCategoryPOST /categories/batchCreate categories in batch
EcommerceApicreateUpdateBatchProductsPOST /products/batchCreate products in batch
EcommerceApicreateUpdateCategoryPOST /categoriesCreate/Update a category
EcommerceApicreateUpdateProductPOST /productsCreate/Update a product
EcommerceApiecommerceActivatePostPOST /ecommerce/activateActivate the eCommerce app
EcommerceApigetCategoriesGET /categoriesReturn all your categories
EcommerceApigetCategoryInfoGET /categories/{id}Get a category details
EcommerceApigetProductInfoGET /products/{id}Get a product's details
EcommerceApigetProductsGET /productsReturn all your products
EmailCampaignsApicreateEmailCampaignPOST /emailCampaignsCreate an email campaign
EmailCampaignsApideleteEmailCampaignDELETE /emailCampaigns/{campaignId}Delete an email campaign
EmailCampaignsApiemailExportRecipientsPOST /emailCampaigns/{campaignId}/exportRecipientsExport the recipients of an email campaign
EmailCampaignsApigetAbTestCampaignResultGET /emailCampaigns/{campaignId}/abTestCampaignResultGet an A/B test email campaign results
EmailCampaignsApigetEmailCampaignGET /emailCampaigns/{campaignId}Get an email campaign report
EmailCampaignsApigetEmailCampaignsGET /emailCampaignsReturn all your created email campaigns
EmailCampaignsApigetSharedTemplateUrlGET /emailCampaigns/{campaignId}/sharedUrlGet a shared template url
EmailCampaignsApisendEmailCampaignNowPOST /emailCampaigns/{campaignId}/sendNowSend an email campaign immediately, based on campaignId
EmailCampaignsApisendReportPOST /emailCampaigns/{campaignId}/sendReportSend the report of a campaign
EmailCampaignsApisendTestEmailPOST /emailCampaigns/{campaignId}/sendTestSend an email campaign to your test list
EmailCampaignsApiupdateCampaignStatusPUT /emailCampaigns/{campaignId}/statusUpdate an email campaign status
EmailCampaignsApiupdateEmailCampaignPUT /emailCampaigns/{campaignId}Update an email campaign
EmailCampaignsApiuploadImageToGalleryPOST /emailCampaigns/imagesUpload an image to your account's image gallery
FoldersApicreateFolderPOST /contacts/foldersCreate a folder
FoldersApideleteFolderDELETE /contacts/folders/{folderId}Delete a folder (and all its lists)
FoldersApigetFolderGET /contacts/folders/{folderId}Returns a folder's details
FoldersApigetFolderListsGET /contacts/folders/{folderId}/listsGet lists in a folder
FoldersApigetFoldersGET /contacts/foldersGet all folders
FoldersApiupdateFolderPUT /contacts/folders/{folderId}Update a folder
FilesApicrmFilesGetGET /crm/filesGet all files
FilesApicrmFilesIdDataGetGET /crm/files/{id}/dataGet file details
FilesApicrmFilesIdDeleteDELETE /crm/files/{id}Delete a file
FilesApicrmFilesIdGetGET /crm/files/{id}Download a file
FilesApicrmFilesPostPOST /crm/filesUpload a file
InboundParsingApigetInboundEmailAttachmentGET /inbound/attachments/{downloadToken}Retrieve inbound attachment with download token.
InboundParsingApigetInboundEmailEventsGET /inbound/eventsGet the list of all the events for the received emails.
InboundParsingApigetInboundEmailEventsByUuidGET /inbound/events/{uuid}Fetch all events history for one particular received email.
ListsApiaddContactToListPOST /contacts/lists/{listId}/contacts/addAdd existing contacts to a list
ListsApicreateListPOST /contacts/listsCreate a list
ListsApideleteListDELETE /contacts/lists/{listId}Delete a list
ListsApigetContactsFromListGET /contacts/lists/{listId}/contactsGet contacts in a list
ListsApigetFolderListsGET /contacts/folders/{folderId}/listsGet lists in a folder
ListsApigetListGET /contacts/lists/{listId}Get a list's details
ListsApigetListsGET /contacts/listsGet all the lists
ListsApiremoveContactFromListPOST /contacts/lists/{listId}/contacts/removeDelete a contact from a list
ListsApiupdateListPUT /contacts/lists/{listId}Update a list
MasterAccountApicorporateMasterAccountGetGET /corporate/masterAccountGet the details of requested master account
MasterAccountApicorporateSubAccountGetGET /corporate/subAccountGet the list of all the sub-accounts of the master account.
MasterAccountApicorporateSubAccountIdDeleteDELETE /corporate/subAccount/{id}Delete a sub-account
MasterAccountApicorporateSubAccountIdGetGET /corporate/subAccount/{id}Get sub-account details
MasterAccountApicorporateSubAccountIdPlanPutPUT /corporate/subAccount/{id}/planUpdate sub-account plan
MasterAccountApicorporateSubAccountKeyPostPOST /corporate/subAccount/keyCreate an API key for a sub-account
MasterAccountApicorporateSubAccountPostPOST /corporate/subAccountCreate a new sub-account under a master account.
MasterAccountApicorporateSubAccountSsoTokenPostPOST /corporate/subAccount/ssoTokenGenerate SSO token to access Sendinblue
NotesApicrmNotesGetGET /crm/notesGet all notes
NotesApicrmNotesIdDeleteDELETE /crm/notes/{id}Delete a note
NotesApicrmNotesIdGetGET /crm/notes/{id}Get a note
NotesApicrmNotesIdPatchPATCH /crm/notes/{id}Update a note
NotesApicrmNotesPostPOST /crm/notesCreate a note
ProcessApigetProcessGET /processes/{processId}Return the informations for a process
ProcessApigetProcessesGET /processesReturn all the processes for your account
ResellerApiaddCreditsPOST /reseller/children/{childIdentifier}/credits/addAdd Email and/or SMS credits to a specific child account
ResellerApiassociateIpToChildPOST /reseller/children/{childIdentifier}/ips/associateAssociate a dedicated IP to the child
ResellerApicreateChildDomainPOST /reseller/children/{childIdentifier}/domainsCreate a domain for a child account
ResellerApicreateResellerChildPOST /reseller/childrenCreates a reseller child
ResellerApideleteChildDomainDELETE /reseller/children/{childIdentifier}/domains/{domainName}Delete the sender domain of the reseller child based on the childIdentifier and domainName passed
ResellerApideleteResellerChildDELETE /reseller/children/{childIdentifier}Delete a single reseller child based on the child identifier supplied
ResellerApidissociateIpFromChildPOST /reseller/children/{childIdentifier}/ips/dissociateDissociate a dedicated IP to the child
ResellerApigetChildAccountCreationStatusGET /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
ResellerApigetChildDomainsGET /reseller/children/{childIdentifier}/domainsGet all sender domains for a specific child account
ResellerApigetChildInfoGET /reseller/children/{childIdentifier}Get a child account's details
ResellerApigetResellerChildsGET /reseller/childrenGet the list of all children accounts
ResellerApigetSsoTokenGET /reseller/children/{childIdentifier}/authGet session token to access Sendinblue (SSO)
ResellerApiremoveCreditsPOST /reseller/children/{childIdentifier}/credits/removeRemove Email and/or SMS credits from a specific child account
ResellerApiupdateChildAccountStatusPUT /reseller/children/{childIdentifier}/accountStatusUpdate info of reseller's child account status based on the childIdentifier supplied
ResellerApiupdateChildDomainPUT /reseller/children/{childIdentifier}/domains/{domainName}Update the sender domain of reseller's child based on the childIdentifier and domainName passed
ResellerApiupdateResellerChildPUT /reseller/children/{childIdentifier}Update info of reseller's child based on the child identifier supplied
SMSCampaignsApicreateSmsCampaignPOST /smsCampaignsCreates an SMS campaign
SMSCampaignsApideleteSmsCampaignDELETE /smsCampaigns/{campaignId}Delete an SMS campaign
SMSCampaignsApigetSmsCampaignGET /smsCampaigns/{campaignId}Get an SMS campaign
SMSCampaignsApigetSmsCampaignsGET /smsCampaignsReturns the information for all your created SMS campaigns
SMSCampaignsApirequestSmsRecipientExportPOST /smsCampaigns/{campaignId}/exportRecipientsExport an SMS campaign's recipients
SMSCampaignsApisendSmsCampaignNowPOST /smsCampaigns/{campaignId}/sendNowSend your SMS campaign immediately
SMSCampaignsApisendSmsReportPOST /smsCampaigns/{campaignId}/sendReportSend an SMS campaign's report
SMSCampaignsApisendTestSmsPOST /smsCampaigns/{campaignId}/sendTestSend a test SMS campaign
SMSCampaignsApiupdateSmsCampaignPUT /smsCampaigns/{campaignId}Update an SMS campaign
SMSCampaignsApiupdateSmsCampaignStatusPUT /smsCampaigns/{campaignId}/statusUpdate a campaign's status
SendersApicreateSenderPOST /sendersCreate a new sender
SendersApideleteSenderDELETE /senders/{senderId}Delete a sender
SendersApigetIpsGET /senders/ipsGet all the dedicated IPs for your account
SendersApigetIpsFromSenderGET /senders/{senderId}/ipsGet all the dedicated IPs for a sender
SendersApigetSendersGET /sendersGet the list of all your senders
SendersApiupdateSenderPUT /senders/{senderId}Update a sender
TasksApicrmTasksGetGET /crm/tasksGet all tasks
TasksApicrmTasksIdDeleteDELETE /crm/tasks/{id}Delete a task
TasksApicrmTasksIdGetGET /crm/tasks/{id}Get a task
TasksApicrmTasksIdPatchPATCH /crm/tasks/{id}Update a task
TasksApicrmTasksPostPOST /crm/tasksCreate a task
TasksApicrmTasktypesGetGET /crm/tasktypesGet all task types
TransactionalEmailsApiblockNewDomainPOST /smtp/blockedDomainsAdd a new domain to the list of blocked domains
TransactionalEmailsApicreateSmtpTemplatePOST /smtp/templatesCreate an email template
TransactionalEmailsApideleteBlockedDomainDELETE /smtp/blockedDomains/{domain}Unblock an existing domain from the list of blocked domains
TransactionalEmailsApideleteHardbouncesPOST /smtp/deleteHardbouncesDelete hardbounces
TransactionalEmailsApideleteScheduledEmailByIdDELETE /smtp/email/{identifier}Delete scheduled emails by batchId or messageId
TransactionalEmailsApideleteSmtpTemplateDELETE /smtp/templates/{templateId}Delete an inactive email template
TransactionalEmailsApigetAggregatedSmtpReportGET /smtp/statistics/aggregatedReportGet your transactional email activity aggregated over a period of time
TransactionalEmailsApigetBlockedDomainsGET /smtp/blockedDomainsGet the list of blocked domains
TransactionalEmailsApigetEmailEventReportGET /smtp/statistics/eventsGet all your transactional email activity (unaggregated events)
TransactionalEmailsApigetScheduledEmailByBatchIdGET /smtp/emailStatus/{batchId}Fetch scheduled emails by batchId
TransactionalEmailsApigetScheduledEmailByIdDELETE /smtp/email/{identifier}Delete scheduled emails by batchId or messageId
TransactionalEmailsApigetScheduledEmailByMessageIdGET /smtp/emailStatus/{messageId}Fetch scheduled email by messageId
TransactionalEmailsApigetSmtpReportGET /smtp/statistics/reportsGet your transactional email activity aggregated per day
TransactionalEmailsApigetSmtpTemplateGET /smtp/templates/{templateId}Returns the template information
TransactionalEmailsApigetSmtpTemplatesGET /smtp/templatesGet the list of email templates
TransactionalEmailsApigetTransacBlockedContactsGET /smtp/blockedContactsGet the list of blocked or unsubscribed transactional contacts
TransactionalEmailsApigetTransacEmailContentGET /smtp/emails/{uuid}Get the personalized content of a sent transactional email
TransactionalEmailsApigetTransacEmailsListGET /smtp/emailsGet the list of transactional emails on the basis of allowed filters
TransactionalEmailsApisendTestTemplatePOST /smtp/templates/{templateId}/sendTestSend a template to your test list
TransactionalEmailsApisendTransacEmailPOST /smtp/emailSend a transactional email
TransactionalEmailsApismtpBlockedContactsEmailDeleteDELETE /smtp/blockedContacts/{email}Unblock or resubscribe a transactional contact
TransactionalEmailsApismtpLogMessageIdDeleteDELETE /smtp/log/{messageId}Delete an SMTP transactional log
TransactionalEmailsApiupdateSmtpTemplatePUT /smtp/templates/{templateId}Update an email template
TransactionalSMSApigetSmsEventsGET /transactionalSMS/statistics/eventsGet all your SMS activity (unaggregated events)
TransactionalSMSApigetTransacAggregatedSmsReportGET /transactionalSMS/statistics/aggregatedReportGet your SMS activity aggregated over a period of time
TransactionalSMSApigetTransacSmsReportGET /transactionalSMS/statistics/reportsGet your SMS activity aggregated per day
TransactionalSMSApisendTransacSmsPOST /transactionalSMS/smsSend SMS message to a mobile number
TransactionalWhatsAppApigetWhatsappEventReportGET /whatsapp/statistics/eventsGet all your WhatsApp activity (unaggregated events)
TransactionalWhatsAppApisendWhatsappMessagePOST /whatsapp/sendMessageSend a WhatsApp message
WebhooksApicreateWebhookPOST /webhooksCreate a webhook
WebhooksApideleteWebhookDELETE /webhooks/{webhookId}Delete a webhook
WebhooksApigetWebhookGET /webhooks/{webhookId}Get a webhook details
WebhooksApigetWebhooksGET /webhooksGet all webhooks
WebhooksApiupdateWebhookPUT /webhooks/{webhookId}Update a webhook
WhatsappCampaignsApideleteWhatsappCampaignDELETE /whatsappCampaigns/{campaignId}Delete a whatsapp campaign
WhatsappCampaignsApigetWhatsappCampaignGET /whatsappCampaigns/{campaignId}Get a whatsapp campaign

Documentation For Models

Documentation For Authorization

api-key

The API key should be passed in the request headers as api-key for authentication.

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

partner-key

The partner key should be passed in the request headers as partner-key along with api-key pair for successful authentication of partner (Optional).

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

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

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

About

SendinBlue's API v3 Php Library

Topics

Resources

Stars

213 stars

Watchers

10 watching

Forks

Releases

Packages

Used by

Contributors

Languages