Skip to content

downloadUserFileActivityCsv

Schedule a download CSV job for user activity on a specific file.

Arguments

Argument Type Description
input (required) DownloadUserFileActivityCsvInput! Request for scheduling a download CSV job for a user activity on a specific file.

Returns

DownloadCsvReply!

Sample

mutation DownloadUserFileActivityCsv($input: DownloadUserFileActivityCsvInput!) {
  downloadUserFileActivityCsv(input: $input) {
    isSuccessful
  }
}
{
  "input": {
    "nativePath": "example-string",
    "snapshot": {},
    "startDay": "example-string",
    "timezone": "example-string",
    "userId": "example-string"
  }
}
{
  "data": {
    "downloadUserFileActivityCsv": {
      "isSuccessful": true
    }
  }
}