Skip to content

ExportCustomObjectRequest

Type: object

Properties

Property Type Required Description Constraints
columnHeaderNames model: ColumnHeaderNames No File header field names override (corresponds with REST API name)
fields array Yes Comma-separated list of custom object attributes to include in the file
filter model: ExportCustomObjectFilter Yes Custom object record selection criteria. Can be one of the following: "updatedAt", "staticListName", "staticListId", "smartListName", "smartListId"
format string No File format to create("CSV", "TSV", "SSV"). Default is "CSV"

Generated example

{
  "columnHeaderNames": {
    "name": "Example name",
    "value": "string"
  },
  "fields": [
    "string"
  ],
  "filter": {
    "updatedAt": {
      "endAt": "string",
      "startAt": "string"
    },
    "smartListId": 123,
    "smartListName": "Example name",
    "staticListId": 123,
    "staticListName": "Example name"
  },
  "format": "string"
}

Referenced models

Source

Generated from swagger-mapi.json.