Lodol Docs

Zoho Campaigns

API actions for the Zoho Campaigns integration.

Zoho Campaigns

Manage mailing lists, contacts, and email campaigns in Zoho Campaigns.


Add contact to list

Subscribe an existing contact to a Zoho Campaigns mailing list.

Parameters

ParameterTypeRequiredDescription
list_keystringNoThe mailing list to add the contact to.
contact_emailstringNoContact email

Response

{}

Create campaign

Create a campaign with a name, subject, and sender email.

Parameters

ParameterTypeRequiredDescription
campaign_namestringNoCampaign name
subjectstringNoEmail subject
sender_emailstringNoSender email address

Response

{}

Subscribe contact

Subscribe a contact to a mailing list.

Parameters

ParameterTypeRequiredDescription
emailstringNoContact email
first_namestringNoFirst name
last_namestringNoLast name
list_keystringNoThe mailing list to add the contact to.

Response

{}

Create list

Create a mailing list with an optional description.

Parameters

ParameterTypeRequiredDescription
namestringNoList name
descriptionstringNoList description

Response

{}

List campaigns

List recent Zoho Campaigns campaigns with an optional status filter.

Parameters

ParameterTypeRequiredDescription
statusstringNoFilter by status (e.g. sent, drafts, scheduled)
sortstringNoSort order (asc or desc)
from_indexnumberNoWhere to start in the list of results, for example 0.
range_numberNoNumber of results to return.

Response

{
  "results": [
    {}
  ]
}

Schedule campaign

Schedule a campaign for a specific date and time.

Parameters

ParameterTypeRequiredDescription
campaign_keystringNoThe campaign to schedule, from the List campaigns action.
schedule_datestringNoDate to send (mm/dd/yyyy)
schedule_hournumberNoHour to send (1-12)
schedule_minutenumberNoMinute to send (0-55)
am_pmstringNoWhether the send time is am or pm.
timezonestringNoRecipient timezone (e.g. Asia/Kolkata)

Response

{}

Send campaign

Send a campaign immediately.

Parameters

ParameterTypeRequiredDescription
campaign_keystringNoThe campaign to send, from the List campaigns action.

Response

{}

On this page