@sudoplatform/sudo-secure-communications
    Preparing search index...

    Interface HandlesModule

    Management of this client's owned handles in the Secure Communications Service.

    interface HandlesModule {
        deprovisionHandle(handleId: HandleId): Promise<void>;
        listHandles(input: ListHandlesInput): Promise<ListOutput<OwnedHandle>>;
        provisionHandle(input: ProvisionHandleInput): Promise<OwnedHandle>;
        updateHandle(input: UpdateHandleInput): Promise<OwnedHandle>;
    }

    Implemented by

    Index

    Methods

    • Deletes an existing handle owned by this client.

      Parameters

      • handleId: HandleId

        The identifier associated with the handle to deprovision.

      Returns Promise<void>

    • List all handles owned by this client.

      Parameters

      Returns Promise<ListOutput<OwnedHandle>>

      A list of all handles matching the search criteria.