get https://api.brevo.com/v3/senders
Code Examples
You can use as reference the code below to implement this call in your preferred language.
Check all our official API clients here
const SibApiV3Sdk = require('sib-api-v3-sdk');
const defaultClient = SibApiV3Sdk.ApiClient.instance;
let apiKey = defaultClient.authentications['api-key'];
apiKey.apiKey = 'YOUR API KEY';
let apiInstance = new SibApiV3Sdk.SendersApi();
let opts = {
'ip': "1.1.1.1",
'domain': "example.com"
};
apiInstance.getSenders(opts).then(function(data) {
console.log('API called successfully. Returned data: ' + JSON.stringify(data));
}, function(error) {
console.error(error);
});
<?php
require_once(__DIR__ . '/vendor/autoload.php');
$config = SendinBlue\Client\Configuration::getDefaultConfiguration()->setApiKey('api-key', 'YOUR API KEY');
$apiInstance = new SendinBlue\Client\Api\SendersApi(
new GuzzleHttp\Client(),
$config
);
$ip = '1.1.1.1';
$domain = 'example.com';
try {
$result = $apiInstance->getSenders($ip, $domain);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling SendersApi->getSenders: ', $e->getMessage(), PHP_EOL;
}
?>
from __future__ import print_function
import time
import sib_api_v3_sdk
from sib_api_v3_sdk.rest import ApiException
from pprint import pprint
configuration = sib_api_v3_sdk.Configuration()
configuration.api_key['api-key'] = 'YOUR API KEY'
api_instance = sib_api_v3_sdk.SendersApi(sib_api_v3_sdk.ApiClient(configuration))
ip = '1.1.1.1'
domain = 'example.com'
try:
api_response = api_instance.get_senders(ip=ip, domain=domain)
pprint(api_response)
except ApiException as e:
print("Exception when calling SendersApi->get_senders: %s\n" % e)
const SibApiV3Sdk = require('sib-api-v3-typescript');
let apiInstance = new SibApiV3Sdk.SendersApi()
let apiKey = apiInstance.authentications['apiKey'];
apiKey.apiKey = 'YOUR API KEY';
let ip = '1.1.1.1';
let domain = 'example.com';
apiInstance.getSenders(ip, domain).then(function(data) {
console.log('API called successfully. Returned data: ' + JSON.stringify(data));
}, function(error) {
console.error(error);
});
using sib_api_v3_sdk.Api;
using sib_api_v3_sdk.Client;
using sib_api_v3_sdk.Model;
using System;
using System.Collections.Generic;
using System.Diagnostics;
namespace Sendinblue
{
class Program
{
static void Main(string[] args)
{
Configuration.Default.ApiKey.Add("api-key", "YOUR API KEY");
var apiInstance = new SendersApi();
string ip = "1.1.1.1";
var domain = "example.com";
try
{
GetSendersList result = apiInstance.GetSenders(ip, domain);
Debug.WriteLine(result.ToJson());
Console.WriteLine(result.ToJson());
Console.ReadLine();
}
catch (Exception e)
{
Debug.WriteLine(e.Message);
Console.WriteLine(e.Message);
Console.ReadLine();
}
}
}
}
# load the gem
require 'sib-api-v3-sdk'
# setup authorization
SibApiV3Sdk.configure do |config|
# Configure API key authorization: api-key
config.api_key['api-key'] = 'YOUR API KEY'
end
api_instance = SibApiV3Sdk::SendersApi.new
opts = {
ip: '1.1.1.1', # String | Filter your senders for a specific ip (available for dedicated IP usage only)
domain: 'example.com' # String | Filter your senders for a specific domain
}
begin
#Get the list of all your senders
result = api_instance.get_senders(opts)
p result
rescue SibApiV3Sdk::ApiError => e
puts "Exception when calling SendersApi->get_senders: #{e}"
end