List all campaigns
GET/martech/{connection_id}/campaign
Parameters
limitnumber default=100
offsetnumber default=0
updated_gtedate
Return only results whose updated date is equal or greater to this value (ISO-8601 / YYYY-MM-DDTHH:MM:SSZ format)
sort enum
order enum
querystring
Query string to search. eg. email address or name
list_idstring
The list ID to filter by
member_idstring
The member ID to filter by
fieldsstring array
Fields to return
rawstring
Raw parameters to include in the 3rd-party request. Encoded as a URL component. eg. raw parameters: foo=bar&zoo=bar -> raw=foo%3Dbar%26zoo%3Dbar
connection_idstring required
ID of the connection
Returns
MarketingCampaignarray
idstring
Unique identifier for the campaign
created_atdate
When the campaign was created (ISO-8601 / YYYY-MM-DDTHH:MM:SSZ format)
updated_atdate
When the campaign was last updated (ISO-8601 / YYYY-MM-DDTHH:MM:SSZ format)
namestring
Campaign nametitle
typestring
Campaign type (e.g., regular, automation, ab_test)
list_idsstring array
Associated listaudience IDs
subject_linestring
Email subject line
preview_textstring
Email preview text
from_namestring
Sender name
from_emailstring
Sender email address
reply_to_emailstring
Reply-to email address
send_atdate
Scheduled send time (ISO-8601 / YYYY-MM-DDTHH:MM:SSZ format)
const options = {
method: 'GET',
url: 'https://api.unified.to/martech/5de520f96e439b002043d8dc/campaign',
headers: {
authorization: 'bearer .....'
},
params: {
limit: 50,
offset: 0,
updated_gte: '2026-06-26T21:08:49.521Z',
sort: 'updated_at',
order: 'asc',
query: '',
list_id: '',
member_id: '',
fields: '',
raw: '',
}
};
const results = await axios.request(options); Are we missing anything? Let us know