Export methods
Export methods are used to export data from Fluentis.
Request
Except Common Parameters the export call include these parameters:
| Name | Type | Required | Description |
|---|---|---|---|
| Output format | |||
| Format | integer | Yes | 0 = XML, 1 = JSON. |
| FluentisFormat | string | No | Import/Export format defined in Arm. It is mandatory if the export method does not have a default format specified. |
| Objects identification | |||
| ObjectsToExport | array of ObjectIdentification | No | List of objects to be exported. |
| ExportFilter | string | No | Filter string for objects to be exported. |
ObjectIdentification properties:
| Name | Type | Required | Description |
|---|---|---|---|
| Id | integer | Yes | List 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]";