Marketo
Discover more about the Marketo connector and how to use it on the Digibee Integration Platform.
The Marketo connector integrates with Marketo’s marketing automation platform, allowing you to manage leads, campaigns, and activity data in your pipelines. You can create or update leads, add them to campaigns or lists, and get activity records to support automated lead management, campaign execution, and reporting.
Parameters
Configure the connector using the parameters below. Fields that support Double Braces expressions are marked in the Supports DB column.
Alias
Name (alias) for this connector’s output, allowing you to reference it later in the flow using Double Braces expressions. Learn more.
String
❌
marketo-1
Fail On Error
If enabled, interrupts the pipeline execution when an error occurs. If disabled, execution continues, but the "success"
property will be set to false
.
Boolean
❌
False
Usage example
Filter lead
Use the connector to filter one or more leads that match a specific filter type, such as email.
Account: OAuth Provider account configured with Marketo credentials.
APIs:
https://066-ACM-164.mktorest.com
Path:
/rest/v1/leads.json
Method:
GET
Query {filterType}:
id
Query {filterValues}:
63538
Example response:
{
"status": 200,
"statusMessage": "200",
"body": {
"requestId": "c85#199298cf93d",
"result": [
{
"id": 63538,
"firstName": "John",
"lastName": "Smith",
"email": "[email protected]",
"updatedAt": "2025-09-08T13:38:47Z",
"createdAt": "2025-09-06T01:42:01Z"
}
],
"success": true
},
"headers": {
"Connection": "keep-alive",
"Content-Length": "228",
"Content-Type": "application/json;charset=UTF-8",
"Date": "Mon, 08 Sep 2025 13:38:48 GMT",
"Server": "nginx"
}
}
Last updated
Was this helpful?