published on Thursday, Aug 20, 2026 by jschady
published on Thursday, Aug 20, 2026 by jschady
A History Export is a resource on the API that is used to export historical action (history) logs.
All queries against the archive must be submitted as Exports. (Even our Web UI creates an Export behind
the scenes.)
We use Amazon Athena behind the scenes for processing these queries, and as such, have powerful
search capabilities. We’ve done our best to expose search capabilities via this History Export API.
In any query field in this API, you may specify multiple values separated by commas. That means that commas
cannot be searched for themselves, and neither can single quotation marks.
We do not currently partition data by date on the backend, so all queries result in a full scan of the entire
data lake. This means that all queries will take about the same amount of time to complete, and we incur about
the same cost per query internally. We don’t typically bill our customers for these queries, assuming
usage is occasional and manual.
If you intend to use this API for high volume or automated use, please contact us with more information
about your use case. We may decide to change the backend data schema to match your use case more closely, and
we may also need to charge an additional cost per query.
Example History Queries
History for a user:
{ "queryUserId": 123 }History for a range of time:
{ "startAt": "2021-03-18 12:00:00", "endAt": "2021-03-19 12:00:00" }History of logins and failed logins:
{ "queryAction": "login,failedlogin" }A Complex query:
{ "queryFolder": "uploads", "queryAction": "create,copy,move", "startAt": "2021-03-18 12:00:00", "endAt": "2021-03-19 12:00:00" }
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as filescom from "pulumi-filescom";
const exampleHistoryExport = filescom.getHistoryExport({
id: 1,
});
import pulumi
import pulumi_filescom as filescom
example_history_export = filescom.get_history_export(id=1)
package main
import (
"github.com/jschady/pulumi-filescom/sdk/go/filescom"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := filescom.GetHistoryExport(ctx, &filescom.GetHistoryExportArgs{
Id: 1,
}, nil)
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Filescom = Jschady.Filescom;
return await Deployment.RunAsync(() =>
{
var exampleHistoryExport = Filescom.GetHistoryExport.Invoke(new()
{
Id = 1,
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.filescom.FilescomFunctions;
import com.pulumi.filescom.inputs.GetHistoryExportArgs;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
final var exampleHistoryExport = FilescomFunctions.getHistoryExport(GetHistoryExportArgs.builder()
.id(1)
.build());
}
}
variables:
exampleHistoryExport:
fn::invoke:
function: filescom:getHistoryExport
arguments:
id: 1
pulumi {
required_providers {
filescom = {
source = "pulumi/filescom"
}
}
}
data "filescom_gethistoryexport" "exampleHistoryExport" {
id = 1
}
Using getHistoryExport
Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.
function getHistoryExport(args: GetHistoryExportArgs, opts?: InvokeOptions): Promise<GetHistoryExportResult>
function getHistoryExportOutput(args: GetHistoryExportOutputArgs, opts?: InvokeOutputOptions): Output<GetHistoryExportResult>def get_history_export(id: Optional[int] = None,
opts: Optional[InvokeOptions] = None) -> GetHistoryExportResult
def get_history_export_output(id: pulumi.Input[Optional[int]] = None,
opts: Optional[InvokeOutputOptions] = None) -> Output[GetHistoryExportResult]func GetHistoryExport(ctx *Context, args *GetHistoryExportArgs, opts ...InvokeOption) (*GetHistoryExportResult, error)
func GetHistoryExportOutput(ctx *Context, args *GetHistoryExportOutputArgs, opts ...InvokeOption) GetHistoryExportResultOutput> Note: This function is named GetHistoryExport in the Go SDK.
public static class GetHistoryExport
{
public static Task<GetHistoryExportResult> InvokeAsync(GetHistoryExportArgs args, InvokeOptions? opts = null)
public static Output<GetHistoryExportResult> Invoke(GetHistoryExportInvokeArgs args, InvokeOptions? opts = null)
public static Output<GetHistoryExportResult> Invoke(GetHistoryExportInvokeArgs args, InvokeOutputOptions opts)
}public static CompletableFuture<GetHistoryExportResult> getHistoryExport(GetHistoryExportArgs args, InvokeOptions options)
public static Output<GetHistoryExportResult> getHistoryExport(GetHistoryExportArgs args, InvokeOptions options)
public static Output<GetHistoryExportResult> getHistoryExport(GetHistoryExportArgs args, InvokeOutputOptions options)
fn::invoke:
function: filescom:index/getHistoryExport:getHistoryExport
arguments:
# arguments dictionarydata "filescom_get_history_export" "name" {
# arguments
}The following arguments are supported:
- Id int
- History Export ID
- Id int
- History Export ID
- id number
- History Export ID
- id Integer
- History Export ID
- id number
- History Export ID
- id int
- History Export ID
- id Number
- History Export ID
getHistoryExport Result
The following output properties are available:
- End
At string - End date/time of export range.
- History
Version string - Version of the history for the export.
- Id int
- History Export ID
- Query
Action string - Filter results by this this action type. Valid values:
create,read,update,destroy,move,login,failedlogin,copy,userCreate,userUpdate,userDestroy,groupCreate,groupUpdate,groupDestroy,permissionCreate,permissionDestroy,apiKeyCreate,apiKeyUpdate,apiKeyDestroy,archivedDelete - Query
Destination string - Return results that are file moves with paths matching this pattern as destination.
- Query
Failure stringType - If searching for Histories about login failures, this parameter restricts results to failures of this specific type. Valid values:
expiredTrial,accountOverdue,lockedOut,ipMismatch,passwordMismatch,siteMismatch,usernameNotFound,none,noFtpPermission,noWebPermission,noDirectory,errnoEnoent,noSftpPermission,noDavPermission,noRestapiPermission,keyMismatch,regionMismatch,expiredAccess,desktopIpMismatch,desktopApiKeyNotUsedQuicklyEnough,disabled,countryMismatch,insecureFtp,insecureCipher,rateLimited - Query
File stringId - Return results that are file actions related to the file indicated by this File ID
- Query
Folder string - Return results that are file actions related to files or folders inside folder paths matching this pattern.
- Query
Interface string - Filter results by this this interface type. Valid values:
web,ftp,robot,jsapi,webdesktopapi,sftp,dav,desktop,restapi,scim,office,mobile,as2,inboundEmail,remote,inboundS3 - Query
Ip string - Filter results by this IP address.
- Query
Parent stringId - Return results that are file actions inside the parent folder specified by this folder ID
- Query
Path string - Return results that are file actions related to paths matching this pattern.
- Query
Src string - Return results that are file moves originating from paths matching this pattern.
- Query
Target stringId - If searching for Histories about specific objects (such as Users, or API Keys), this parameter restricts results to objects that match this ID.
- Query
Target stringName - If searching for Histories about Users, Groups or other objects with names, this parameter restricts results to objects with this name/username.
- Query
Target stringPermission - If searching for Histories about Permissions, this parameter restricts results to permissions of this level.
- Query
Target stringPermission Set - If searching for Histories about API keys, this parameter restricts results to API keys with this permission set.
- Query
Target stringPlatform - If searching for Histories about API keys, this parameter restricts results to API keys associated with this platform.
- Query
Target stringUser Id - If searching for Histories about API keys, this parameter restricts results to API keys created by/for this user ID.
- Query
Target stringUsername - If searching for Histories about API keys, this parameter restricts results to API keys created by/for this username.
- Query
User stringId - Return results that are actions performed by the user indicated by this User ID
- Query
Username string - Filter results by this username.
- Results
Url string - If
statusisready, this will be a URL where all the results can be downloaded at once as a CSV. - Start
At string - Start date/time of export range.
- Status string
- Status of export. Will be:
building,ready, orfailed
- End
At string - End date/time of export range.
- History
Version string - Version of the history for the export.
- Id int
- History Export ID
- Query
Action string - Filter results by this this action type. Valid values:
create,read,update,destroy,move,login,failedlogin,copy,userCreate,userUpdate,userDestroy,groupCreate,groupUpdate,groupDestroy,permissionCreate,permissionDestroy,apiKeyCreate,apiKeyUpdate,apiKeyDestroy,archivedDelete - Query
Destination string - Return results that are file moves with paths matching this pattern as destination.
- Query
Failure stringType - If searching for Histories about login failures, this parameter restricts results to failures of this specific type. Valid values:
expiredTrial,accountOverdue,lockedOut,ipMismatch,passwordMismatch,siteMismatch,usernameNotFound,none,noFtpPermission,noWebPermission,noDirectory,errnoEnoent,noSftpPermission,noDavPermission,noRestapiPermission,keyMismatch,regionMismatch,expiredAccess,desktopIpMismatch,desktopApiKeyNotUsedQuicklyEnough,disabled,countryMismatch,insecureFtp,insecureCipher,rateLimited - Query
File stringId - Return results that are file actions related to the file indicated by this File ID
- Query
Folder string - Return results that are file actions related to files or folders inside folder paths matching this pattern.
- Query
Interface string - Filter results by this this interface type. Valid values:
web,ftp,robot,jsapi,webdesktopapi,sftp,dav,desktop,restapi,scim,office,mobile,as2,inboundEmail,remote,inboundS3 - Query
Ip string - Filter results by this IP address.
- Query
Parent stringId - Return results that are file actions inside the parent folder specified by this folder ID
- Query
Path string - Return results that are file actions related to paths matching this pattern.
- Query
Src string - Return results that are file moves originating from paths matching this pattern.
- Query
Target stringId - If searching for Histories about specific objects (such as Users, or API Keys), this parameter restricts results to objects that match this ID.
- Query
Target stringName - If searching for Histories about Users, Groups or other objects with names, this parameter restricts results to objects with this name/username.
- Query
Target stringPermission - If searching for Histories about Permissions, this parameter restricts results to permissions of this level.
- Query
Target stringPermission Set - If searching for Histories about API keys, this parameter restricts results to API keys with this permission set.
- Query
Target stringPlatform - If searching for Histories about API keys, this parameter restricts results to API keys associated with this platform.
- Query
Target stringUser Id - If searching for Histories about API keys, this parameter restricts results to API keys created by/for this user ID.
- Query
Target stringUsername - If searching for Histories about API keys, this parameter restricts results to API keys created by/for this username.
- Query
User stringId - Return results that are actions performed by the user indicated by this User ID
- Query
Username string - Filter results by this username.
- Results
Url string - If
statusisready, this will be a URL where all the results can be downloaded at once as a CSV. - Start
At string - Start date/time of export range.
- Status string
- Status of export. Will be:
building,ready, orfailed
- end_
at string - End date/time of export range.
- history_
version string - Version of the history for the export.
- id number
- History Export ID
- query_
action string - Filter results by this this action type. Valid values:
create,read,update,destroy,move,login,failedlogin,copy,userCreate,userUpdate,userDestroy,groupCreate,groupUpdate,groupDestroy,permissionCreate,permissionDestroy,apiKeyCreate,apiKeyUpdate,apiKeyDestroy,archivedDelete - query_
destination string - Return results that are file moves with paths matching this pattern as destination.
- query_
failure_ stringtype - If searching for Histories about login failures, this parameter restricts results to failures of this specific type. Valid values:
expiredTrial,accountOverdue,lockedOut,ipMismatch,passwordMismatch,siteMismatch,usernameNotFound,none,noFtpPermission,noWebPermission,noDirectory,errnoEnoent,noSftpPermission,noDavPermission,noRestapiPermission,keyMismatch,regionMismatch,expiredAccess,desktopIpMismatch,desktopApiKeyNotUsedQuicklyEnough,disabled,countryMismatch,insecureFtp,insecureCipher,rateLimited - query_
file_ stringid - Return results that are file actions related to the file indicated by this File ID
- query_
folder string - Return results that are file actions related to files or folders inside folder paths matching this pattern.
- query_
interface string - Filter results by this this interface type. Valid values:
web,ftp,robot,jsapi,webdesktopapi,sftp,dav,desktop,restapi,scim,office,mobile,as2,inboundEmail,remote,inboundS3 - query_
ip string - Filter results by this IP address.
- query_
parent_ stringid - Return results that are file actions inside the parent folder specified by this folder ID
- query_
path string - Return results that are file actions related to paths matching this pattern.
- query_
src string - Return results that are file moves originating from paths matching this pattern.
- query_
target_ stringid - If searching for Histories about specific objects (such as Users, or API Keys), this parameter restricts results to objects that match this ID.
- query_
target_ stringname - If searching for Histories about Users, Groups or other objects with names, this parameter restricts results to objects with this name/username.
- query_
target_ stringpermission - If searching for Histories about Permissions, this parameter restricts results to permissions of this level.
- query_
target_ stringpermission_ set - If searching for Histories about API keys, this parameter restricts results to API keys with this permission set.
- query_
target_ stringplatform - If searching for Histories about API keys, this parameter restricts results to API keys associated with this platform.
- query_
target_ stringuser_ id - If searching for Histories about API keys, this parameter restricts results to API keys created by/for this user ID.
- query_
target_ stringusername - If searching for Histories about API keys, this parameter restricts results to API keys created by/for this username.
- query_
user_ stringid - Return results that are actions performed by the user indicated by this User ID
- query_
username string - Filter results by this username.
- results_
url string - If
statusisready, this will be a URL where all the results can be downloaded at once as a CSV. - start_
at string - Start date/time of export range.
- status string
- Status of export. Will be:
building,ready, orfailed
- end
At String - End date/time of export range.
- history
Version String - Version of the history for the export.
- id Integer
- History Export ID
- query
Action String - Filter results by this this action type. Valid values:
create,read,update,destroy,move,login,failedlogin,copy,userCreate,userUpdate,userDestroy,groupCreate,groupUpdate,groupDestroy,permissionCreate,permissionDestroy,apiKeyCreate,apiKeyUpdate,apiKeyDestroy,archivedDelete - query
Destination String - Return results that are file moves with paths matching this pattern as destination.
- query
Failure StringType - If searching for Histories about login failures, this parameter restricts results to failures of this specific type. Valid values:
expiredTrial,accountOverdue,lockedOut,ipMismatch,passwordMismatch,siteMismatch,usernameNotFound,none,noFtpPermission,noWebPermission,noDirectory,errnoEnoent,noSftpPermission,noDavPermission,noRestapiPermission,keyMismatch,regionMismatch,expiredAccess,desktopIpMismatch,desktopApiKeyNotUsedQuicklyEnough,disabled,countryMismatch,insecureFtp,insecureCipher,rateLimited - query
File StringId - Return results that are file actions related to the file indicated by this File ID
- query
Folder String - Return results that are file actions related to files or folders inside folder paths matching this pattern.
- query
Interface String - Filter results by this this interface type. Valid values:
web,ftp,robot,jsapi,webdesktopapi,sftp,dav,desktop,restapi,scim,office,mobile,as2,inboundEmail,remote,inboundS3 - query
Ip String - Filter results by this IP address.
- query
Parent StringId - Return results that are file actions inside the parent folder specified by this folder ID
- query
Path String - Return results that are file actions related to paths matching this pattern.
- query
Src String - Return results that are file moves originating from paths matching this pattern.
- query
Target StringId - If searching for Histories about specific objects (such as Users, or API Keys), this parameter restricts results to objects that match this ID.
- query
Target StringName - If searching for Histories about Users, Groups or other objects with names, this parameter restricts results to objects with this name/username.
- query
Target StringPermission - If searching for Histories about Permissions, this parameter restricts results to permissions of this level.
- query
Target StringPermission Set - If searching for Histories about API keys, this parameter restricts results to API keys with this permission set.
- query
Target StringPlatform - If searching for Histories about API keys, this parameter restricts results to API keys associated with this platform.
- query
Target StringUser Id - If searching for Histories about API keys, this parameter restricts results to API keys created by/for this user ID.
- query
Target StringUsername - If searching for Histories about API keys, this parameter restricts results to API keys created by/for this username.
- query
User StringId - Return results that are actions performed by the user indicated by this User ID
- query
Username String - Filter results by this username.
- results
Url String - If
statusisready, this will be a URL where all the results can be downloaded at once as a CSV. - start
At String - Start date/time of export range.
- status String
- Status of export. Will be:
building,ready, orfailed
- end
At string - End date/time of export range.
- history
Version string - Version of the history for the export.
- id number
- History Export ID
- query
Action string - Filter results by this this action type. Valid values:
create,read,update,destroy,move,login,failedlogin,copy,userCreate,userUpdate,userDestroy,groupCreate,groupUpdate,groupDestroy,permissionCreate,permissionDestroy,apiKeyCreate,apiKeyUpdate,apiKeyDestroy,archivedDelete - query
Destination string - Return results that are file moves with paths matching this pattern as destination.
- query
Failure stringType - If searching for Histories about login failures, this parameter restricts results to failures of this specific type. Valid values:
expiredTrial,accountOverdue,lockedOut,ipMismatch,passwordMismatch,siteMismatch,usernameNotFound,none,noFtpPermission,noWebPermission,noDirectory,errnoEnoent,noSftpPermission,noDavPermission,noRestapiPermission,keyMismatch,regionMismatch,expiredAccess,desktopIpMismatch,desktopApiKeyNotUsedQuicklyEnough,disabled,countryMismatch,insecureFtp,insecureCipher,rateLimited - query
File stringId - Return results that are file actions related to the file indicated by this File ID
- query
Folder string - Return results that are file actions related to files or folders inside folder paths matching this pattern.
- query
Interface string - Filter results by this this interface type. Valid values:
web,ftp,robot,jsapi,webdesktopapi,sftp,dav,desktop,restapi,scim,office,mobile,as2,inboundEmail,remote,inboundS3 - query
Ip string - Filter results by this IP address.
- query
Parent stringId - Return results that are file actions inside the parent folder specified by this folder ID
- query
Path string - Return results that are file actions related to paths matching this pattern.
- query
Src string - Return results that are file moves originating from paths matching this pattern.
- query
Target stringId - If searching for Histories about specific objects (such as Users, or API Keys), this parameter restricts results to objects that match this ID.
- query
Target stringName - If searching for Histories about Users, Groups or other objects with names, this parameter restricts results to objects with this name/username.
- query
Target stringPermission - If searching for Histories about Permissions, this parameter restricts results to permissions of this level.
- query
Target stringPermission Set - If searching for Histories about API keys, this parameter restricts results to API keys with this permission set.
- query
Target stringPlatform - If searching for Histories about API keys, this parameter restricts results to API keys associated with this platform.
- query
Target stringUser Id - If searching for Histories about API keys, this parameter restricts results to API keys created by/for this user ID.
- query
Target stringUsername - If searching for Histories about API keys, this parameter restricts results to API keys created by/for this username.
- query
User stringId - Return results that are actions performed by the user indicated by this User ID
- query
Username string - Filter results by this username.
- results
Url string - If
statusisready, this will be a URL where all the results can be downloaded at once as a CSV. - start
At string - Start date/time of export range.
- status string
- Status of export. Will be:
building,ready, orfailed
- end_
at str - End date/time of export range.
- history_
version str - Version of the history for the export.
- id int
- History Export ID
- query_
action str - Filter results by this this action type. Valid values:
create,read,update,destroy,move,login,failedlogin,copy,userCreate,userUpdate,userDestroy,groupCreate,groupUpdate,groupDestroy,permissionCreate,permissionDestroy,apiKeyCreate,apiKeyUpdate,apiKeyDestroy,archivedDelete - query_
destination str - Return results that are file moves with paths matching this pattern as destination.
- query_
failure_ strtype - If searching for Histories about login failures, this parameter restricts results to failures of this specific type. Valid values:
expiredTrial,accountOverdue,lockedOut,ipMismatch,passwordMismatch,siteMismatch,usernameNotFound,none,noFtpPermission,noWebPermission,noDirectory,errnoEnoent,noSftpPermission,noDavPermission,noRestapiPermission,keyMismatch,regionMismatch,expiredAccess,desktopIpMismatch,desktopApiKeyNotUsedQuicklyEnough,disabled,countryMismatch,insecureFtp,insecureCipher,rateLimited - query_
file_ strid - Return results that are file actions related to the file indicated by this File ID
- query_
folder str - Return results that are file actions related to files or folders inside folder paths matching this pattern.
- query_
interface str - Filter results by this this interface type. Valid values:
web,ftp,robot,jsapi,webdesktopapi,sftp,dav,desktop,restapi,scim,office,mobile,as2,inboundEmail,remote,inboundS3 - query_
ip str - Filter results by this IP address.
- query_
parent_ strid - Return results that are file actions inside the parent folder specified by this folder ID
- query_
path str - Return results that are file actions related to paths matching this pattern.
- query_
src str - Return results that are file moves originating from paths matching this pattern.
- query_
target_ strid - If searching for Histories about specific objects (such as Users, or API Keys), this parameter restricts results to objects that match this ID.
- query_
target_ strname - If searching for Histories about Users, Groups or other objects with names, this parameter restricts results to objects with this name/username.
- query_
target_ strpermission - If searching for Histories about Permissions, this parameter restricts results to permissions of this level.
- query_
target_ strpermission_ set - If searching for Histories about API keys, this parameter restricts results to API keys with this permission set.
- query_
target_ strplatform - If searching for Histories about API keys, this parameter restricts results to API keys associated with this platform.
- query_
target_ struser_ id - If searching for Histories about API keys, this parameter restricts results to API keys created by/for this user ID.
- query_
target_ strusername - If searching for Histories about API keys, this parameter restricts results to API keys created by/for this username.
- query_
user_ strid - Return results that are actions performed by the user indicated by this User ID
- query_
username str - Filter results by this username.
- results_
url str - If
statusisready, this will be a URL where all the results can be downloaded at once as a CSV. - start_
at str - Start date/time of export range.
- status str
- Status of export. Will be:
building,ready, orfailed
- end
At String - End date/time of export range.
- history
Version String - Version of the history for the export.
- id Number
- History Export ID
- query
Action String - Filter results by this this action type. Valid values:
create,read,update,destroy,move,login,failedlogin,copy,userCreate,userUpdate,userDestroy,groupCreate,groupUpdate,groupDestroy,permissionCreate,permissionDestroy,apiKeyCreate,apiKeyUpdate,apiKeyDestroy,archivedDelete - query
Destination String - Return results that are file moves with paths matching this pattern as destination.
- query
Failure StringType - If searching for Histories about login failures, this parameter restricts results to failures of this specific type. Valid values:
expiredTrial,accountOverdue,lockedOut,ipMismatch,passwordMismatch,siteMismatch,usernameNotFound,none,noFtpPermission,noWebPermission,noDirectory,errnoEnoent,noSftpPermission,noDavPermission,noRestapiPermission,keyMismatch,regionMismatch,expiredAccess,desktopIpMismatch,desktopApiKeyNotUsedQuicklyEnough,disabled,countryMismatch,insecureFtp,insecureCipher,rateLimited - query
File StringId - Return results that are file actions related to the file indicated by this File ID
- query
Folder String - Return results that are file actions related to files or folders inside folder paths matching this pattern.
- query
Interface String - Filter results by this this interface type. Valid values:
web,ftp,robot,jsapi,webdesktopapi,sftp,dav,desktop,restapi,scim,office,mobile,as2,inboundEmail,remote,inboundS3 - query
Ip String - Filter results by this IP address.
- query
Parent StringId - Return results that are file actions inside the parent folder specified by this folder ID
- query
Path String - Return results that are file actions related to paths matching this pattern.
- query
Src String - Return results that are file moves originating from paths matching this pattern.
- query
Target StringId - If searching for Histories about specific objects (such as Users, or API Keys), this parameter restricts results to objects that match this ID.
- query
Target StringName - If searching for Histories about Users, Groups or other objects with names, this parameter restricts results to objects with this name/username.
- query
Target StringPermission - If searching for Histories about Permissions, this parameter restricts results to permissions of this level.
- query
Target StringPermission Set - If searching for Histories about API keys, this parameter restricts results to API keys with this permission set.
- query
Target StringPlatform - If searching for Histories about API keys, this parameter restricts results to API keys associated with this platform.
- query
Target StringUser Id - If searching for Histories about API keys, this parameter restricts results to API keys created by/for this user ID.
- query
Target StringUsername - If searching for Histories about API keys, this parameter restricts results to API keys created by/for this username.
- query
User StringId - Return results that are actions performed by the user indicated by this User ID
- query
Username String - Filter results by this username.
- results
Url String - If
statusisready, this will be a URL where all the results can be downloaded at once as a CSV. - start
At String - Start date/time of export range.
- status String
- Status of export. Will be:
building,ready, orfailed
Package Details
- Repository
- filescom jschady/pulumi-filescom
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
filescomTerraform Provider.
published on Thursday, Aug 20, 2026 by jschady