Dotmailer Client

Dotmailer API client written in Java

License

License

Categories

Categories

CLI User Interface
GroupId

GroupId

com.lindar
ArtifactId

ArtifactId

dotmailer-client
Last Version

Last Version

1.5.2
Release Date

Release Date

Type

Type

jar
Description

Description

Dotmailer Client
Dotmailer API client written in Java
Project URL

Project URL

http://www.lindar.com/
Source Code Management

Source Code Management

https://github.com/lindar-open/dotmailer-java-client.git

Download dotmailer-client

How to add to project

<!-- https://jarcasting.com/artifacts/com.lindar/dotmailer-client/ -->
<dependency>
    <groupId>com.lindar</groupId>
    <artifactId>dotmailer-client</artifactId>
    <version>1.5.2</version>
</dependency>
// https://jarcasting.com/artifacts/com.lindar/dotmailer-client/
implementation 'com.lindar:dotmailer-client:1.5.2'
// https://jarcasting.com/artifacts/com.lindar/dotmailer-client/
implementation ("com.lindar:dotmailer-client:1.5.2")
'com.lindar:dotmailer-client:jar:1.5.2'
<dependency org="com.lindar" name="dotmailer-client" rev="1.5.2">
  <artifact name="dotmailer-client" type="jar" />
</dependency>
@Grapes(
@Grab(group='com.lindar', module='dotmailer-client', version='1.5.2')
)
libraryDependencies += "com.lindar" % "dotmailer-client" % "1.5.2"
[com.lindar/dotmailer-client "1.5.2"]

Dependencies

compile (4)

Group / Artifact Type Version
com.lindar : well-rested-client jar 1.5.5
net.sf.supercsv : super-csv jar 2.4.0
net.sf.supercsv : super-csv-java8 jar 2.4.0
joda-time : joda-time jar 2.10

Project Modules

There are no modules declared in this project.

dotmailer-java-client

Dotmailer API client written in Java 8.

Some Examples (more to come):

Get Account Info

Result<AccountInfo> accountInfo = Dotmailer.build(username, pass).accountInfo().get();

List Address Books or Get a specific Address Book

Result<List<AddressBook>> addressBooks = Dotmailer.build(username, pass).addressBook().list();
Result<AddressBook> addressBook = Dotmailer.build(username, pass).addressBook().get(addressBookId);

List Address Books Contacts

Result<List<Contact>> addressBooks = Dotmailer.build(username, pass).addressBook().listContacts(addressBookId);

Note: Almost all methods return an empty optional object when the account doesn't exist or dotmailer's API couldn't be contacted.

Usage:

<dependency>
    <groupId>com.lindar</groupId>
    <artifactId>dotmailer-client</artifactId>
    <version>1.0.0</version>
</dependency>
com.lindar

Lindar Media

All our open-source projects in one place

Versions

Version
1.5.2
1.5.0
1.3.0
1.2.0
1.1.0
1.0.1
1.0.0