Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

The following example exports the objects that were created yesterday as a CSV file.

Code Block
{
	"filters":
	{
		"created":
		{
			"o": "rg",
			"v1":"yesterday"
		}
	}
}


Remark: Beginning with version 10.6 the column labels are only given in English. If other labels should be contained in the CSV file they must be part of the payload like:

The list of fields controls the column sequence in the CSV file. The value of the fields contains the qualified name of the field (object type property) followed by the label (all characters after the first space). If no label is given the technical name is used for it.

Code Block
{
  "types": [
    "personaldossier"
  ],
  "options": {
    ...
  },
  "fields": [
    "type Type",
    "personaldossier.dateofdeployment Date of employment",
    "personaldossier.class Class",
    "personaldossier.firstname First name",
    "personaldossier.surname Family name",
    ...
    "created Created",
    "creatortitle Creator",
    "modified Edited",
    "modifiertitle Editor"
  ]
}