v1

latestOpenAPI 3.1.02026-07-2498134321.1 KB
Exports

Submit a request to generate a new data export

Submit a request to generate a new data export.

OAuth Scope required: public.export.createReports

The Data Export feature is part of the paid Security & Data Pro add-on. Contact your Ironclad account representative for more information about purchasing this package.

post/exports

Headers

x-as-user-emailstring
Example:jane.doe@test.com

Denotes the actor of the request. When used, the API will take into account this user's permissions and access. This or x-as-user-id is required when the associated token was produced from the Client Credentials grant or with legacy bearer tokens on select endpoints. More information about permissions.

x-as-user-idstring
Example:5f0375c4cdc1927a3c5edcd3

Denotes the actor of the request. When used, the API will take into account this user's permissions and access. This or x-as-user-email is required when the associated token was produced from the Client Credentials grant or with legacy bearer tokens on select endpoints. More information about permissions.

Request body

exportType'workflow_activities' | 'audit_log' required

string for record type. Example: workflow_activities

startDatestring

Starting date (ISO8601 format) of data to be included in the export. Example: 2016-11-17T00:37:22.318Z

endDatestring

Starting date (ISO8601 format) of data to be included in the export. Example: 2016-11-17T00:37:22.318Z

exportFormat'CSV' | 'JSON'

File format for the export. CSV is the default.

signedUrlEnabledboolean

An optional boolean value to enable a signed url for downloading the exported file. If not provided, defaults to false.

Example request

{
  "exportType": "workflow_activities",
  "startDate": "2016-11-17T00:37:22.318Z",
  "endDate": "2016-11-17T00:37:22.318Z",
  "exportFormat": "CSV",
  "exportConfigs": {
    "metadataProperties": [
      "counterpartyName"
    ]
  }
}

Response

200

jobIdstring
jobStatus'pending' | 'running' | 'done' | 'failed'

Example response

{
  "jobId": "02e1343b-d024-4de0-a22e-a579282f05d9"
}