Excel Add-In for Marketo

Build 24.0.9175

CreateCustomObjectsExportJob

Create a custom object export job based on the given filters. Only 1 filter type can be specified.

Execute

Sample
	EXECUTE CreateCustomObjectsExportJob Table='CustomObject_cdatajp3', UpdatedAtStartAt='2023-01-01T00:00:00Z', UpdatedAtStartAt='2023-01-10T00:00:00Z'
	EXECUTE CreateCustomObjectsExportJob Table='CustomObject_cdatajp3', UpdatedAtStartAt='2023-01-01T00:00:00Z', UpdatedAtStartAt='2023-02-25T00:00:00Z', Columns='lead=LeadId,*'
	EXECUTE CreateCustomObjectsExportJob Table='CustomObject_cdatajp3', SmartListName='CDataSmartList'
	EXECUTE CreateCustomObjectsExportJob Table='CustomObject_cdatajp3', SmartListId=12
	EXECUTE CreateCustomObjectsExportJob Table='CustomObject_cdatajp3', StaticListName='ImportTest0407_csv'
	EXECUTE CreateCustomObjectsExportJob Table='CustomObject_cdatajp3', StaticListId=13

Input

Name Type Required Description
Table String True Name of the custom object to export data for. Matches the name of custom objects listed in sys_tables.
Format String False Format of export file to be generated. Available values are: CSV, TSV, SSV

The allowed values are CSV, TSV, SSV.

The default value is CSV.

Columns String False Comma separated list of columns that will be retrieved. Defaults to * (all columns). Different header names can be specified for each column using this syntax: columnName=csvHeaderName i.e.:leadRole=Role,marketingSuspendedCause=SuspendedCause,*

The default value is *.

UseAPINames Boolean False If set to true, you must specify fields in the columns input based on their name in the Marketo API. Defaults to false, meaning you can provided column names based on the drivers metadata (sys_tablecolumns).

The default value is false.

UpdatedAtStartAt Datetime False Inclusive lower bound filter for the lead update datetime.
UpdatedAtEndAt Datetime False Inclusive upper bound filter for the lead update datetime.
StaticListId Integer False The id of a static list you want to use as a filter.
StaticListName String False The name of a static list you want to use as a filter.
SmartListId Integer False The id of a smart list you want to use as a filter.
SmartListName String False The name of a smart list you want to use as a filter.

Result Set Columns

Name Type Description
Id String The Id of the export job.
Format String The format of the export job.
CreatedAt Datetime The date when the export job was created.
Status String The status of the export process.
Success Boolean Boolean indicating if the procedure was executed successfully. If false, the output parameter 'Details' will contain the failure details.
Details String Details of execution failure. NULL if success=true.

Copyright (c) 2025 CData Software, Inc. - All rights reserved.
Build 24.0.9175