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

    Interface ProofListQuery

    interface ProofListQuery {
        completedDateAfter?: string;
        completedDateBefore?: string;
        createdDateAfter?: string;
        createdDateBefore?: string;
        exact?: NAME[];
        ids?: string[];
        lastModifiedAfter?: string;
        lastModifiedBefore?: string;
        name?: string;
        organisationId: string;
        page: number;
        pageSize: number;
        profiles?: string[];
        proofRoles?: ProofRole[];
        proofSchemaIds?: string[];
        proofStates?: ProofState[];
        requestedDateAfter?: string;
        requestedDateBefore?: string;
        sort?: SortableProofColumn;
        sortDirection?: SortDirection;
    }
    Index

    Properties

    completedDateAfter?: string

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

    completedDateBefore?: string

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

    createdDateAfter?: string

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

    createdDateBefore?: string

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

    exact?: NAME[]

    Set which filters apply in an exact way.

    ids?: string[]

    Filter by one or more UUIDs.

    lastModifiedAfter?: string

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

    lastModifiedBefore?: string

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

    name?: string

    Return only proof requests with a name starting with this string.

    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.

    profiles?: string[]

    Filter by one or more country profiles.

    proofRoles?: ProofRole[]

    Filter proof requests by one or more roles: requested by the system (VERIFIER) or received by the system (HOLDER).

    proofSchemaIds?: string[]

    Filter by associated proof schemas.

    proofStates?: ProofState[]

    Filter by one or more proof request states.

    requestedDateAfter?: string

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

    requestedDateBefore?: string

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

    Field value to sort results by.

    sortDirection?: SortDirection

    Direction to sort results by.