Skip to content
For LLMsView as Markdown·

Dotdigital

Manage contacts, address books, email campaigns, automation programs, and send transactional emails with the Dotdigital marketing platform.

DetailValue
CategoryMarketing
Base URLhttps://r1-api.dotdigital.com/v2
AuthenticationAPI Key
Endpoints21
Connector keydotdigital

Using Dotdigital in a workflow

  1. Go to Connections and click New Connection.
  2. Pick Dotdigital from the marketplace.
  3. Enter your credentials (see Authentication above for what's expected).
  4. In a workflow, drop an API Call node and select this connection.
  5. Pick the operation you need from the Operation dropdown — the full list is below.

Available endpoints

EndpointSummary
GET /contacts/{email}Get contact by email
POST /contactsCreate or update a contact
DELETE /contacts/{email}Delete contact by email
GET /contacts/unsubscribed-since/{date}Get contacts unsubscribed since date
GET /contacts/suppressed-since/{date}Get suppressed contacts since date
GET /address-booksList all address books
POST /address-booksCreate an address book
GET /address-books/{id}/contactsList contacts in address book
POST /address-books/{id}/contactsAdd contact to address book
DELETE /address-books/{id}/contacts/{email}Remove contact from address book
GET /campaigns/with-activity-since/{dateTime}List campaigns with activity since date
GET /campaigns/{id}Get campaign by ID
GET /campaigns/{id}/summaryGet campaign summary statistics
GET /campaigns/{id}/activity-since/{dateTime}Get campaign contact activity since date
GET /data-fieldsList all data fields
POST /data-fieldsCreate a data field
DELETE /data-fields/{name}Delete a data field
GET /programsList all automation programs
POST /programs/enrolmentsEnrol contacts in a program
POST /email/sendSend a transactional email
GET /account-infoGet account information

Each endpoint is documented in full below. Use the outline on the right to jump to one.

GET /contacts/{email}

Get contact by email

DetailValue
Operation IDcontacts.getByEmail
MethodGET
Path/contacts/{email}

Parameters

NameLocationTypeRequired
emailpathstringYes

Using this endpoint in a workflow

  1. Add an API Call node to your workflow.
  2. Pick your Dotdigital connection from the Connection dropdown.
  3. In the Operation dropdown, select contacts.getByEmail.
  4. Fill in the parameter fields that appear. Use {{...}} to reference upstream values.

Required fields are marked — fill them or the call will fail at runtime.

What it returns

The API Call node writes the response to the workflow context:

{
  status: 200,
  success: true,
  data: { ...response body from the API... },
  latencyMs: 142
}

Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream Dotdigital API reference.

POST /contacts

Create or update a contact

DetailValue
Operation IDcontacts.createOrUpdate
MethodPOST
Path/contacts

Parameters

No parameters.

Request Body

FieldType
emailstring
optInTypestring
dataFieldsarray

Using this endpoint in a workflow

  1. Add an API Call node to your workflow.
  2. Pick your Dotdigital connection from the Connection dropdown.
  3. In the Operation dropdown, select contacts.createOrUpdate.
  4. Fill in the parameter fields that appear. Use {{...}} to reference upstream values.

Required fields are marked — fill them or the call will fail at runtime.

What it returns

The API Call node writes the response to the workflow context:

{
  status: 200,
  success: true,
  data: { ...response body from the API... },
  latencyMs: 142
}

Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream Dotdigital API reference.

DELETE /contacts/{email}

Delete contact by email

DetailValue
Operation IDcontacts.deleteByEmail
MethodDELETE
Path/contacts/{email}

Parameters

NameLocationTypeRequired
emailpathstringYes

Using this endpoint in a workflow

  1. Add an API Call node to your workflow.
  2. Pick your Dotdigital connection from the Connection dropdown.
  3. In the Operation dropdown, select contacts.deleteByEmail.
  4. Fill in the parameter fields that appear. Use {{...}} to reference upstream values.

Required fields are marked — fill them or the call will fail at runtime.

What it returns

The API Call node writes the response to the workflow context:

{
  status: 200,
  success: true,
  data: { ...response body from the API... },
  latencyMs: 142
}

Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream Dotdigital API reference.

GET /contacts/unsubscribed-since/{date}

Get contacts unsubscribed since date

DetailValue
Operation IDcontacts.listUnsubscribed
MethodGET
Path/contacts/unsubscribed-since/{date}

Parameters

NameLocationTypeRequired
datepathstringYes

Using this endpoint in a workflow

  1. Add an API Call node to your workflow.
  2. Pick your Dotdigital connection from the Connection dropdown.
  3. In the Operation dropdown, select contacts.listUnsubscribed.
  4. Fill in the parameter fields that appear. Use {{...}} to reference upstream values.

Required fields are marked — fill them or the call will fail at runtime.

What it returns

The API Call node writes the response to the workflow context:

{
  status: 200,
  success: true,
  data: { ...response body from the API... },
  latencyMs: 142
}

Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream Dotdigital API reference.

GET /contacts/suppressed-since/{date}

Get suppressed contacts since date

DetailValue
Operation IDcontacts.listSuppressed
MethodGET
Path/contacts/suppressed-since/{date}

Parameters

NameLocationTypeRequired
datepathstringYes

Using this endpoint in a workflow

  1. Add an API Call node to your workflow.
  2. Pick your Dotdigital connection from the Connection dropdown.
  3. In the Operation dropdown, select contacts.listSuppressed.
  4. Fill in the parameter fields that appear. Use {{...}} to reference upstream values.

Required fields are marked — fill them or the call will fail at runtime.

What it returns

The API Call node writes the response to the workflow context:

{
  status: 200,
  success: true,
  data: { ...response body from the API... },
  latencyMs: 142
}

Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream Dotdigital API reference.

GET /address-books

List all address books

DetailValue
Operation IDaddressBooks.list
MethodGET
Path/address-books

Parameters

No parameters.

Using this endpoint in a workflow

  1. Add an API Call node to your workflow.
  2. Pick your Dotdigital connection from the Connection dropdown.
  3. In the Operation dropdown, select addressBooks.list.
  4. Fill in the parameter fields that appear. Use {{...}} to reference upstream values.

What it returns

The API Call node writes the response to the workflow context:

{
  status: 200,
  success: true,
  data: { ...response body from the API... },
  latencyMs: 142
}

Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream Dotdigital API reference.

POST /address-books

Create an address book

DetailValue
Operation IDaddressBooks.create
MethodPOST
Path/address-books

Parameters

No parameters.

Request Body

FieldType
namestring
visibilitystring

Using this endpoint in a workflow

  1. Add an API Call node to your workflow.
  2. Pick your Dotdigital connection from the Connection dropdown.
  3. In the Operation dropdown, select addressBooks.create.
  4. Fill in the parameter fields that appear. Use {{...}} to reference upstream values.

Required fields are marked — fill them or the call will fail at runtime.

What it returns

The API Call node writes the response to the workflow context:

{
  status: 200,
  success: true,
  data: { ...response body from the API... },
  latencyMs: 142
}

Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream Dotdigital API reference.

GET /address-books/{id}/contacts

List contacts in address book

DetailValue
Operation IDaddressBooks.listContacts
MethodGET
Path/address-books/{id}/contacts

Parameters

NameLocationTypeRequired
idpathintegerYes

Using this endpoint in a workflow

  1. Add an API Call node to your workflow.
  2. Pick your Dotdigital connection from the Connection dropdown.
  3. In the Operation dropdown, select addressBooks.listContacts.
  4. Fill in the parameter fields that appear. Use {{...}} to reference upstream values.

Required fields are marked — fill them or the call will fail at runtime.

What it returns

The API Call node writes the response to the workflow context:

{
  status: 200,
  success: true,
  data: { ...response body from the API... },
  latencyMs: 142
}

Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream Dotdigital API reference.

POST /address-books/{id}/contacts

Add contact to address book

DetailValue
Operation IDaddressBooks.addContact
MethodPOST
Path/address-books/{id}/contacts

Parameters

NameLocationTypeRequired
idpathintegerYes

Request Body

FieldType
emailstring

Using this endpoint in a workflow

  1. Add an API Call node to your workflow.
  2. Pick your Dotdigital connection from the Connection dropdown.
  3. In the Operation dropdown, select addressBooks.addContact.
  4. Fill in the parameter fields that appear. Use {{...}} to reference upstream values.

Required fields are marked — fill them or the call will fail at runtime.

What it returns

The API Call node writes the response to the workflow context:

{
  status: 200,
  success: true,
  data: { ...response body from the API... },
  latencyMs: 142
}

Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream Dotdigital API reference.

DELETE /address-books/{id}/contacts/{email}

Remove contact from address book

DetailValue
Operation IDaddressBooks.removeContact
MethodDELETE
Path/address-books/{id}/contacts/{email}

Parameters

NameLocationTypeRequired
idpathintegerYes
emailpathstringYes

Using this endpoint in a workflow

  1. Add an API Call node to your workflow.
  2. Pick your Dotdigital connection from the Connection dropdown.
  3. In the Operation dropdown, select addressBooks.removeContact.
  4. Fill in the parameter fields that appear. Use {{...}} to reference upstream values.

Required fields are marked — fill them or the call will fail at runtime.

What it returns

The API Call node writes the response to the workflow context:

{
  status: 200,
  success: true,
  data: { ...response body from the API... },
  latencyMs: 142
}

Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream Dotdigital API reference.

GET /campaigns/with-activity-since/{dateTime}

List campaigns with activity since date

DetailValue
Operation IDcampaigns.listWithActivitySince
MethodGET
Path/campaigns/with-activity-since/{dateTime}

Parameters

NameLocationTypeRequired
dateTimepathstringYes

Using this endpoint in a workflow

  1. Add an API Call node to your workflow.
  2. Pick your Dotdigital connection from the Connection dropdown.
  3. In the Operation dropdown, select campaigns.listWithActivitySince.
  4. Fill in the parameter fields that appear. Use {{...}} to reference upstream values.

Required fields are marked — fill them or the call will fail at runtime.

What it returns

The API Call node writes the response to the workflow context:

{
  status: 200,
  success: true,
  data: { ...response body from the API... },
  latencyMs: 142
}

Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream Dotdigital API reference.

GET /campaigns/{id}

Get campaign by ID

DetailValue
Operation IDcampaigns.getById
MethodGET
Path/campaigns/{id}

Parameters

NameLocationTypeRequired
idpathintegerYes

Using this endpoint in a workflow

  1. Add an API Call node to your workflow.
  2. Pick your Dotdigital connection from the Connection dropdown.
  3. In the Operation dropdown, select campaigns.getById.
  4. Fill in the parameter fields that appear. Use {{...}} to reference upstream values.

Required fields are marked — fill them or the call will fail at runtime.

What it returns

The API Call node writes the response to the workflow context:

{
  status: 200,
  success: true,
  data: { ...response body from the API... },
  latencyMs: 142
}

Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream Dotdigital API reference.

GET /campaigns/{id}/summary

Get campaign summary statistics

DetailValue
Operation IDcampaigns.getSummary
MethodGET
Path/campaigns/{id}/summary

Parameters

NameLocationTypeRequired
idpathintegerYes

Using this endpoint in a workflow

  1. Add an API Call node to your workflow.
  2. Pick your Dotdigital connection from the Connection dropdown.
  3. In the Operation dropdown, select campaigns.getSummary.
  4. Fill in the parameter fields that appear. Use {{...}} to reference upstream values.

Required fields are marked — fill them or the call will fail at runtime.

What it returns

The API Call node writes the response to the workflow context:

{
  status: 200,
  success: true,
  data: { ...response body from the API... },
  latencyMs: 142
}

Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream Dotdigital API reference.

GET /campaigns/{id}/activity-since/{dateTime}

Get campaign contact activity since date

DetailValue
Operation IDcampaigns.getActivitySince
MethodGET
Path/campaigns/{id}/activity-since/{dateTime}

Parameters

NameLocationTypeRequired
idpathintegerYes
dateTimepathstringYes

Using this endpoint in a workflow

  1. Add an API Call node to your workflow.
  2. Pick your Dotdigital connection from the Connection dropdown.
  3. In the Operation dropdown, select campaigns.getActivitySince.
  4. Fill in the parameter fields that appear. Use {{...}} to reference upstream values.

Required fields are marked — fill them or the call will fail at runtime.

What it returns

The API Call node writes the response to the workflow context:

{
  status: 200,
  success: true,
  data: { ...response body from the API... },
  latencyMs: 142
}

Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream Dotdigital API reference.

GET /data-fields

List all data fields

DetailValue
Operation IDdataFields.list
MethodGET
Path/data-fields

Parameters

No parameters.

Using this endpoint in a workflow

  1. Add an API Call node to your workflow.
  2. Pick your Dotdigital connection from the Connection dropdown.
  3. In the Operation dropdown, select dataFields.list.
  4. Fill in the parameter fields that appear. Use {{...}} to reference upstream values.

What it returns

The API Call node writes the response to the workflow context:

{
  status: 200,
  success: true,
  data: { ...response body from the API... },
  latencyMs: 142
}

Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream Dotdigital API reference.

POST /data-fields

Create a data field

DetailValue
Operation IDdataFields.create
MethodPOST
Path/data-fields

Parameters

No parameters.

Request Body

FieldType
namestring
typestring

Using this endpoint in a workflow

  1. Add an API Call node to your workflow.
  2. Pick your Dotdigital connection from the Connection dropdown.
  3. In the Operation dropdown, select dataFields.create.
  4. Fill in the parameter fields that appear. Use {{...}} to reference upstream values.

Required fields are marked — fill them or the call will fail at runtime.

What it returns

The API Call node writes the response to the workflow context:

{
  status: 200,
  success: true,
  data: { ...response body from the API... },
  latencyMs: 142
}

Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream Dotdigital API reference.

DELETE /data-fields/{name}

Delete a data field

DetailValue
Operation IDdataFields.delete
MethodDELETE
Path/data-fields/{name}

Parameters

NameLocationTypeRequired
namepathstringYes

Using this endpoint in a workflow

  1. Add an API Call node to your workflow.
  2. Pick your Dotdigital connection from the Connection dropdown.
  3. In the Operation dropdown, select dataFields.delete.
  4. Fill in the parameter fields that appear. Use {{...}} to reference upstream values.

Required fields are marked — fill them or the call will fail at runtime.

What it returns

The API Call node writes the response to the workflow context:

{
  status: 200,
  success: true,
  data: { ...response body from the API... },
  latencyMs: 142
}

Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream Dotdigital API reference.

GET /programs

List all automation programs

DetailValue
Operation IDprograms.list
MethodGET
Path/programs

Parameters

No parameters.

Using this endpoint in a workflow

  1. Add an API Call node to your workflow.
  2. Pick your Dotdigital connection from the Connection dropdown.
  3. In the Operation dropdown, select programs.list.
  4. Fill in the parameter fields that appear. Use {{...}} to reference upstream values.

What it returns

The API Call node writes the response to the workflow context:

{
  status: 200,
  success: true,
  data: { ...response body from the API... },
  latencyMs: 142
}

Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream Dotdigital API reference.

POST /programs/enrolments

Enrol contacts in a program

DetailValue
Operation IDprograms.enrolContacts
MethodPOST
Path/programs/enrolments

Parameters

No parameters.

Request Body

FieldType
programIdinteger
contactsarray

Using this endpoint in a workflow

  1. Add an API Call node to your workflow.
  2. Pick your Dotdigital connection from the Connection dropdown.
  3. In the Operation dropdown, select programs.enrolContacts.
  4. Fill in the parameter fields that appear. Use {{...}} to reference upstream values.

Required fields are marked — fill them or the call will fail at runtime.

What it returns

The API Call node writes the response to the workflow context:

{
  status: 200,
  success: true,
  data: { ...response body from the API... },
  latencyMs: 142
}

Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream Dotdigital API reference.

POST /email/send

Send a transactional email

DetailValue
Operation IDemail.sendTransactional
MethodPOST
Path/email/send

Parameters

No parameters.

Request Body

FieldType
campaignIdinteger
toAddressesarray

Using this endpoint in a workflow

  1. Add an API Call node to your workflow.
  2. Pick your Dotdigital connection from the Connection dropdown.
  3. In the Operation dropdown, select email.sendTransactional.
  4. Fill in the parameter fields that appear. Use {{...}} to reference upstream values.

Required fields are marked — fill them or the call will fail at runtime.

What it returns

The API Call node writes the response to the workflow context:

{
  status: 200,
  success: true,
  data: { ...response body from the API... },
  latencyMs: 142
}

Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream Dotdigital API reference.

GET /account-info

Get account information

DetailValue
Operation IDaccount.getInfo
MethodGET
Path/account-info

Parameters

No parameters.

Using this endpoint in a workflow

  1. Add an API Call node to your workflow.
  2. Pick your Dotdigital connection from the Connection dropdown.
  3. In the Operation dropdown, select account.getInfo.
  4. Fill in the parameter fields that appear. Use {{...}} to reference upstream values.

What it returns

The API Call node writes the response to the workflow context:

{
  status: 200,
  success: true,
  data: { ...response body from the API... },
  latencyMs: 142
}

Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream Dotdigital API reference.