@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;
        proofSchemaId?: string;
        search?: HistorySearch;
        users?: string[];
    }
    Index

    Properties

    actions?: HistoryAction[]

    Return only the provided events.

    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.

    proofSchemaId?: string

    Return only events associated with the provided proof schema ID.

    search?: HistorySearch

    Search for a string.

    users?: string[]

    Return only events associated with the provided user(s).