Lodol Docs

Zoho Campaigns

API actions for the Zoho Campaigns integration.

Zoho Campaigns

Automate Zoho Campaigns lists, contacts, and campaign workflows using OAuth tokens.


Add contact to list

Subscribe an existing contact to a Zoho Campaigns mailing list.

Parameters

ParameterTypeRequiredDescription
list_keystringNoMailing list key
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_keystringNoList key to subscribe 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_indexnumberNoStarting index for results
range_numberNoNumber of results to return

Response

{
  "results": [
    {}
  ]
}

Schedule campaign

Schedule a campaign for a specific date and time.

Parameters

ParameterTypeRequiredDescription
campaign_keystringNoCampaign key from recent campaigns response
schedule_datestringNoDate to send (mm/dd/yyyy)
schedule_hournumberNoHour to send (1-12)
schedule_minutenumberNoMinute to send (0-55)
am_pmstringNo'am' or 'pm'
timezonestringNoRecipient timezone (e.g. Asia/Kolkata)

Response

{}

Send campaign

Send a campaign immediately.

Parameters

ParameterTypeRequiredDescription
campaign_keystringNoCampaign key from recent campaigns response

Response

{}

On this page