Version: 17.07
Supported Since: 17.07
Schedule Marketo Campaign connector operation can be used to remotely schedules a batch campaign to run at a given time. My tokens local to the campaign’s parent program can be overridden for the run to customize content.
This operation requires Execute Campaign permission from Marketo API. |
* marked fields are mandatory
Campaign ID * |
Basic |
The ID of the batch campaign to schedule. This should be an integer and can be specified as a constant value or as a combination of placeholder expressions. |
This operation expects the request message to contain the campaign schedule request as a JSON payload of the following format.
{
"input": {
"cloneToProgramName": "string",
"runAt": "2017-10-30T08:54:04.785Z",
"tokens": [
{
"name": "string",
"value": "string"
}
]
}
}
If this operation was invoked successfully, it will provide a response message with a JSON payload of the following format.
{
"errors": [
{
"code": 0,
"message": "string"
}
],
"moreResult": false,
"nextPageToken": "string",
"requestId": "string",
"result": [
{
"active": false,
"createdAt": "string",
"description": "string",
"id": 0,
"name": "string",
"programId": 0,
"programName": "string",
"type": "batch",
"updatedAt": "string",
"workspaceName": "string"
}
],
"success": false,
"warnings": [
{
"code": 0,
"message": "string"
}
]
}