Skip to main content

Export methods

Export methods are used to export data from Fluentis.

Request

Except Common Parameters the export call include these parameters:

NameTypeRequiredDescription
Output format
FormatintegerYes0 = XML, 1 = JSON.
FluentisFormatstringNoImport/Export format defined in Arm.
It is mandatory if the export method does not have a default format specified.
Objects identification
ObjectsToExportarray of ObjectIdentificationNoList of objects to be exported.
ExportFilterstringNoFilter string for objects to be exported.

ObjectIdentification properties:

NameTypeRequiredDescription
IdintegerYesList of objects to be exported.

ExportFilter examples:

Filter by date (DateOnly/TimeOnly constants):

ExportFilter = "[LastEditDate] >= #!2025-03-09!#";

Filter by date (Date-time constants):

ExportFilter = "[Contact.LastEditDate] >= #2018-03-22 13:18:51.94944#";

Filter by date from a reference:

ExportFilter = "[Contact.LastEditDate] >= #!2025-03-09!#";

Filter by a property in a collection:

ExportFilter = "[PrototypeProductionCyclePhases][[ItemPrototype.Id] == 4]";