1. Registry
  2. Packages
  3. Files.com
  4. API Docs
  5. getHistoryExport
Viewing docs for Files.com v0.1.1
published on Thursday, Aug 20, 2026 by jschady
filescom logo
Viewing docs for Files.com v0.1.1
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 dictionary
    data "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:

    EndAt string
    End date/time of export range.
    HistoryVersion string
    Version of the history for the export.
    Id int
    History Export ID
    QueryAction 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
    QueryDestination string
    Return results that are file moves with paths matching this pattern as destination.
    QueryFailureType string
    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
    QueryFileId string
    Return results that are file actions related to the file indicated by this File ID
    QueryFolder string
    Return results that are file actions related to files or folders inside folder paths matching this pattern.
    QueryInterface 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
    QueryIp string
    Filter results by this IP address.
    QueryParentId string
    Return results that are file actions inside the parent folder specified by this folder ID
    QueryPath string
    Return results that are file actions related to paths matching this pattern.
    QuerySrc string
    Return results that are file moves originating from paths matching this pattern.
    QueryTargetId string
    If searching for Histories about specific objects (such as Users, or API Keys), this parameter restricts results to objects that match this ID.
    QueryTargetName string
    If searching for Histories about Users, Groups or other objects with names, this parameter restricts results to objects with this name/username.
    QueryTargetPermission string
    If searching for Histories about Permissions, this parameter restricts results to permissions of this level.
    QueryTargetPermissionSet string
    If searching for Histories about API keys, this parameter restricts results to API keys with this permission set.
    QueryTargetPlatform string
    If searching for Histories about API keys, this parameter restricts results to API keys associated with this platform.
    QueryTargetUserId string
    If searching for Histories about API keys, this parameter restricts results to API keys created by/for this user ID.
    QueryTargetUsername string
    If searching for Histories about API keys, this parameter restricts results to API keys created by/for this username.
    QueryUserId string
    Return results that are actions performed by the user indicated by this User ID
    QueryUsername string
    Filter results by this username.
    ResultsUrl string
    If status is ready, this will be a URL where all the results can be downloaded at once as a CSV.
    StartAt string
    Start date/time of export range.
    Status string
    Status of export. Will be: building, ready, or failed
    EndAt string
    End date/time of export range.
    HistoryVersion string
    Version of the history for the export.
    Id int
    History Export ID
    QueryAction 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
    QueryDestination string
    Return results that are file moves with paths matching this pattern as destination.
    QueryFailureType string
    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
    QueryFileId string
    Return results that are file actions related to the file indicated by this File ID
    QueryFolder string
    Return results that are file actions related to files or folders inside folder paths matching this pattern.
    QueryInterface 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
    QueryIp string
    Filter results by this IP address.
    QueryParentId string
    Return results that are file actions inside the parent folder specified by this folder ID
    QueryPath string
    Return results that are file actions related to paths matching this pattern.
    QuerySrc string
    Return results that are file moves originating from paths matching this pattern.
    QueryTargetId string
    If searching for Histories about specific objects (such as Users, or API Keys), this parameter restricts results to objects that match this ID.
    QueryTargetName string
    If searching for Histories about Users, Groups or other objects with names, this parameter restricts results to objects with this name/username.
    QueryTargetPermission string
    If searching for Histories about Permissions, this parameter restricts results to permissions of this level.
    QueryTargetPermissionSet string
    If searching for Histories about API keys, this parameter restricts results to API keys with this permission set.
    QueryTargetPlatform string
    If searching for Histories about API keys, this parameter restricts results to API keys associated with this platform.
    QueryTargetUserId string
    If searching for Histories about API keys, this parameter restricts results to API keys created by/for this user ID.
    QueryTargetUsername string
    If searching for Histories about API keys, this parameter restricts results to API keys created by/for this username.
    QueryUserId string
    Return results that are actions performed by the user indicated by this User ID
    QueryUsername string
    Filter results by this username.
    ResultsUrl string
    If status is ready, this will be a URL where all the results can be downloaded at once as a CSV.
    StartAt string
    Start date/time of export range.
    Status string
    Status of export. Will be: building, ready, or failed
    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_type string
    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_id string
    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_id string
    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_id string
    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_name string
    If searching for Histories about Users, Groups or other objects with names, this parameter restricts results to objects with this name/username.
    query_target_permission string
    If searching for Histories about Permissions, this parameter restricts results to permissions of this level.
    query_target_permission_set string
    If searching for Histories about API keys, this parameter restricts results to API keys with this permission set.
    query_target_platform string
    If searching for Histories about API keys, this parameter restricts results to API keys associated with this platform.
    query_target_user_id string
    If searching for Histories about API keys, this parameter restricts results to API keys created by/for this user ID.
    query_target_username string
    If searching for Histories about API keys, this parameter restricts results to API keys created by/for this username.
    query_user_id string
    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 status is ready, 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, or failed
    endAt String
    End date/time of export range.
    historyVersion String
    Version of the history for the export.
    id Integer
    History Export ID
    queryAction 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
    queryDestination String
    Return results that are file moves with paths matching this pattern as destination.
    queryFailureType String
    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
    queryFileId String
    Return results that are file actions related to the file indicated by this File ID
    queryFolder String
    Return results that are file actions related to files or folders inside folder paths matching this pattern.
    queryInterface 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
    queryIp String
    Filter results by this IP address.
    queryParentId String
    Return results that are file actions inside the parent folder specified by this folder ID
    queryPath String
    Return results that are file actions related to paths matching this pattern.
    querySrc String
    Return results that are file moves originating from paths matching this pattern.
    queryTargetId String
    If searching for Histories about specific objects (such as Users, or API Keys), this parameter restricts results to objects that match this ID.
    queryTargetName String
    If searching for Histories about Users, Groups or other objects with names, this parameter restricts results to objects with this name/username.
    queryTargetPermission String
    If searching for Histories about Permissions, this parameter restricts results to permissions of this level.
    queryTargetPermissionSet String
    If searching for Histories about API keys, this parameter restricts results to API keys with this permission set.
    queryTargetPlatform String
    If searching for Histories about API keys, this parameter restricts results to API keys associated with this platform.
    queryTargetUserId String
    If searching for Histories about API keys, this parameter restricts results to API keys created by/for this user ID.
    queryTargetUsername String
    If searching for Histories about API keys, this parameter restricts results to API keys created by/for this username.
    queryUserId String
    Return results that are actions performed by the user indicated by this User ID
    queryUsername String
    Filter results by this username.
    resultsUrl String
    If status is ready, this will be a URL where all the results can be downloaded at once as a CSV.
    startAt String
    Start date/time of export range.
    status String
    Status of export. Will be: building, ready, or failed
    endAt string
    End date/time of export range.
    historyVersion string
    Version of the history for the export.
    id number
    History Export ID
    queryAction 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
    queryDestination string
    Return results that are file moves with paths matching this pattern as destination.
    queryFailureType string
    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
    queryFileId string
    Return results that are file actions related to the file indicated by this File ID
    queryFolder string
    Return results that are file actions related to files or folders inside folder paths matching this pattern.
    queryInterface 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
    queryIp string
    Filter results by this IP address.
    queryParentId string
    Return results that are file actions inside the parent folder specified by this folder ID
    queryPath string
    Return results that are file actions related to paths matching this pattern.
    querySrc string
    Return results that are file moves originating from paths matching this pattern.
    queryTargetId string
    If searching for Histories about specific objects (such as Users, or API Keys), this parameter restricts results to objects that match this ID.
    queryTargetName string
    If searching for Histories about Users, Groups or other objects with names, this parameter restricts results to objects with this name/username.
    queryTargetPermission string
    If searching for Histories about Permissions, this parameter restricts results to permissions of this level.
    queryTargetPermissionSet string
    If searching for Histories about API keys, this parameter restricts results to API keys with this permission set.
    queryTargetPlatform string
    If searching for Histories about API keys, this parameter restricts results to API keys associated with this platform.
    queryTargetUserId string
    If searching for Histories about API keys, this parameter restricts results to API keys created by/for this user ID.
    queryTargetUsername string
    If searching for Histories about API keys, this parameter restricts results to API keys created by/for this username.
    queryUserId string
    Return results that are actions performed by the user indicated by this User ID
    queryUsername string
    Filter results by this username.
    resultsUrl string
    If status is ready, this will be a URL where all the results can be downloaded at once as a CSV.
    startAt string
    Start date/time of export range.
    status string
    Status of export. Will be: building, ready, or failed
    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_type str
    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_id str
    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_id str
    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_id str
    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_name str
    If searching for Histories about Users, Groups or other objects with names, this parameter restricts results to objects with this name/username.
    query_target_permission str
    If searching for Histories about Permissions, this parameter restricts results to permissions of this level.
    query_target_permission_set str
    If searching for Histories about API keys, this parameter restricts results to API keys with this permission set.
    query_target_platform str
    If searching for Histories about API keys, this parameter restricts results to API keys associated with this platform.
    query_target_user_id str
    If searching for Histories about API keys, this parameter restricts results to API keys created by/for this user ID.
    query_target_username str
    If searching for Histories about API keys, this parameter restricts results to API keys created by/for this username.
    query_user_id str
    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 status is ready, 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, or failed
    endAt String
    End date/time of export range.
    historyVersion String
    Version of the history for the export.
    id Number
    History Export ID
    queryAction 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
    queryDestination String
    Return results that are file moves with paths matching this pattern as destination.
    queryFailureType String
    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
    queryFileId String
    Return results that are file actions related to the file indicated by this File ID
    queryFolder String
    Return results that are file actions related to files or folders inside folder paths matching this pattern.
    queryInterface 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
    queryIp String
    Filter results by this IP address.
    queryParentId String
    Return results that are file actions inside the parent folder specified by this folder ID
    queryPath String
    Return results that are file actions related to paths matching this pattern.
    querySrc String
    Return results that are file moves originating from paths matching this pattern.
    queryTargetId String
    If searching for Histories about specific objects (such as Users, or API Keys), this parameter restricts results to objects that match this ID.
    queryTargetName String
    If searching for Histories about Users, Groups or other objects with names, this parameter restricts results to objects with this name/username.
    queryTargetPermission String
    If searching for Histories about Permissions, this parameter restricts results to permissions of this level.
    queryTargetPermissionSet String
    If searching for Histories about API keys, this parameter restricts results to API keys with this permission set.
    queryTargetPlatform String
    If searching for Histories about API keys, this parameter restricts results to API keys associated with this platform.
    queryTargetUserId String
    If searching for Histories about API keys, this parameter restricts results to API keys created by/for this user ID.
    queryTargetUsername String
    If searching for Histories about API keys, this parameter restricts results to API keys created by/for this username.
    queryUserId String
    Return results that are actions performed by the user indicated by this User ID
    queryUsername String
    Filter results by this username.
    resultsUrl String
    If status is ready, this will be a URL where all the results can be downloaded at once as a CSV.
    startAt String
    Start date/time of export range.
    status String
    Status of export. Will be: building, ready, or failed

    Package Details

    Repository
    filescom jschady/pulumi-filescom
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the filescom Terraform Provider.
    filescom logo
    Viewing docs for Files.com v0.1.1
    published on Thursday, Aug 20, 2026 by jschady

      Try Pulumi Cloud free.
      Your team will thank you.

      Start free trial