post https://api.brevo.com/v3/emailCampaigns/images
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');
let defaultClient = SibApiV3Sdk.ApiClient.instance;
let apiKey = defaultClient.authentications['api-key'];
apiKey.apiKey = 'YOUR API KEY';
let apiInstance = new SibApiV3Sdk.EmailCampaignsApi();
let uploadImage = new SibApiV3Sdk.UploadImageToGallery();
uploadImage = {
"imageUrl":"https://example.net/upload-file.jpg",
"name":"Example Image"
};
apiInstance.uploadImageToGallery(uploadImage).then(function() {
console.log('API called successfully.');
}, 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\EmailCampaignsApi(
new GuzzleHttp\Client(),
$config
);
$uploadImage = new \SendinBlue\Client\Model\UploadImageToGallery();
$uploadImage['imageUrl'] = 'https://example.net/upload-file.jpg';
$uploadImage['name'] = 'Example Image';
try {
$apiInstance->uploadImageToGallery($uploadImage);
} catch (Exception $e) {
echo 'Exception when calling EmailCampaignsApi->uploadImageToGallery: ', $e->getMessage(), PHP_EOL;
}
?>
from __future__ import print_function
import time
import datetime
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.EmailCampaignsApi(sib_api_v3_sdk.ApiClient(configuration))
upload_image = sib_api_v3_sdk.UploadImageToGallery(image_url="https://example.net/upload-file.jpg", name="Example Image")
try:
api_instance.upload_image_to_gallery(upload_image)
except ApiException as e:
print("Exception when calling EmailCampaignsApi->upload_image_to_gallery: %s\n" % e)
const SibApiV3Sdk = require('sib-api-v3-typescript');
let apiInstance = new SibApiV3Sdk.EmailCampaignsApi();
let apiKey = apiInstance.authentications['apiKey'];
apiKey.apiKey = 'YOUR API KEY';
let uploadImage = new SibApiV3Sdk.UploadImageToGallery();
uploadImage = {
"imageUrl":"https://example.net/upload-file.jpg",
"name":"Example Image"
};
apiInstance.uploadImageToGallery(uploadImage).then(function() {
console.log('API called successfully.');
}, function(error) {
console.error(error);
});
package sibApi;
import sendinblue.ApiClient;
import sendinblue.Configuration;
import sendinblue.auth.ApiKeyAuth;
import sibModel.*;
public class Program {
public static void main(String[] args) {
ApiClient defaultClient = Configuration.getDefaultApiClient();
// Configure API key authorization: api-key
ApiKeyAuth apiKey = (ApiKeyAuth) defaultClient.getAuthentication("api-key");
apiKey.setApiKey("YOUR API KEY");
try {
EmailCampaignsApi api = new EmailCampaignsApi();
UploadImageToGallery uploadImage = new UploadImageToGallery();
uploadImage.setImageUrl("https://example.net/upload-file.jpg");
uploadImage.setName("test.jpg");
api.uploadImageToGallery(uploadImage);
} catch (Exception e) {
System.out.println("Exception occurred:- " + e.getMessage());
}
}
}
using sib_api_v3_sdk.Api;
using sib_api_v3_sdk.Client;
using sib_api_v3_sdk.Model;
using System;
using System.Diagnostics;
namespace Sendinblue
{
class Program
{
static void Main(string[] args)
{
Configuration.Default.ApiKey.Add("api-key", "YOUR API KEY");
var apiInstance = new EmailCampaignsApi();
string Name = "test.jpg";
string ImageUrl = "https://example.net/upload-file.jpg";
var uploadImage = new UploadImageToGallery(ImageUrl, Name);
try
{
apiInstance.UploadImageToGallery(uploadImage);
Console.ReadLine();
}
catch (Exception e)
{
Debug.WriteLine(e.Message);
Console.WriteLine(e.Message);
Console.ReadLine();
}
}
}
}
package main
import (
"fmt"
"context"
sib_api_v3_sdk "./lib"
)
func main() {
var ctx context.Context
var cli = sib_api_v3_sdk.APIClient{
cfg: sib_api_v3_sdk.NewConfiguration(),
}
//Configure API key authorization: api-key
cli.cfg.AddDefaultHeader("api-key", "YOUR_API_KEY")
sib := sib_api_v3_sdk.NewAPIClient(cli.cfg)
body := UploadImageToGallery{
ImageUrl: "https://example.net/upload-file.jpg",
Name: "Example Image",
}
resp, err := sib.EmailCampaignsApi.UploadImageToGallery(ctx, body)
if err!=nil{
fmt.Println("Error in EmailCampaignsApi->UploadImageToGallery ",err.Error())
return
}
fmt.Println( "UploadImageToGallery, response:",resp)
return
}
# 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::EmailCampaignsApi.new
upload_image = SibApiV3Sdk::UploadImageToGallery.new # UploadImageToGallery | Parameters to upload an image
upload_image = {
'imageUrl'=> 'https://example.net/upload-file.jpg',
'name'=> 'Example Image'
}
begin
#Upload an image to your account's image gallery
api_instance.upload_image_to_gallery(upload_image)
rescue SibApiV3Sdk::ApiError => e
puts "Exception when calling EmailCampaignsApi->upload_image_to_gallery: #{e}"
end