@procivis/react-native-one-core
    Preparing search index...

    Interface HistoryListQuery

    interface HistoryListQuery {
        actions?: HistoryAction[];
        createdDateAfter?: string;
        createdDateBefore?: string;
        credentialId?: string;
        credentialSchemaId?: string;
        entityIds?: string[];
        entityTypes?: HistoryEntityType[];
        identifierId?: string;
        organisationId: string;
        page: number;
        pageSize: number;
        proofId?: string;
        proofSchemaId?: string;
        search?: HistorySearch;
        sort?: SortableHistoryColumn;
        sortDirection?: SortDirection;
        trustCollectionId?: string;
        users?: string[];
    }
    Index

    Properties

    actions?: HistoryAction[]

    Return only events of the specified action types.

    createdDateAfter?: string

    Return only entries created after this time. Timestamp in RFC 3339 format (for example 2023-06-09T14:19:57.000Z).

    createdDateBefore?: string

    Return only entries created before this time. Timestamp in RFC 3339 format (for example 2023-06-09T14:19:57.000Z).

    credentialId?: string

    Return only events associated with the provided credential ID.

    credentialSchemaId?: string

    Return only events associated with the provided credential schema ID.

    entityIds?: string[]

    Return only events associated with the provided entity IDs.

    entityTypes?: HistoryEntityType[]

    Return only events associated with the provided entity types.

    identifierId?: string

    Return only events associated with the provided identifier ID.

    organisationId: string

    Specifies the organizational context for this operation.

    page: number

    Page number to retrieve (0-based indexing).

    pageSize: number

    Number of items to return per page.

    proofId?: string

    Return only events associated with the provided proof ID.

    proofSchemaId?: string

    Return only events associated with the provided proof schema ID.

    search?: HistorySearch

    Search history events by string. Set text to specify the search string and optionally type to restrict which field is searched. When type is omitted, all searchable fields are checked.

    Field value to sort results by.

    sortDirection?: SortDirection

    Direction to sort results by.

    trustCollectionId?: string

    Return only events associated with the provided trust collection D.

    users?: string[]

    Return only events triggered by the specified users.