Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

...

...

...

...

...

Product

Full PreVeil

Symptom

When performing a Data Export, the folder for the completed export is missing data.

Cause

When an administrator of a PreVeil organization assigns an approval group to the Data Export activity, a submit shards request is sent to users of the organization. Each user’s account sends shards oftheir decryption keys, wrapped with approver’s encryption key, for each approver in the Data Export Approval Group. User accounts have 4 weeks to respond to this request, and if a user’s account does not fulfill that request within that timeframe, the request will expire and a Data Export request for that user will not contain any data.

Info

Note: The user does not need to manually respond to this request; the computer where they have access to their PreVeil account just needs to be online with PreVeil running within that 4 week period to present the key to the Approval Group.

Resolution

With the 4.18.0 build of PreVeil, we have added functionality for an administrator to re-request shards for the Data Export Approval Group from the users of the organization. A PreVeil administrator can trigger the submit_shards_to_export request. The members of the Data Export Approval Group will need to approve the request, and once approved, the request is sent to the users in the organization that have missing shards.

Steps to trigger submit_shards_to_export request:

  • On the affected user’s device, make sure the PreVeil services are running.

  • On the administrator’s computer, open a Command Prompt window (if on Windows) or a Terminal window (if on Mac).

  • Make sure that the curl command is available on that computer.

  • In either Command Prompt (Windows) or Terminal (Mac) type curl and hit Enter.

  • If curl is installed, you will receive a reply of curl: try ‘curl --help’ for more information

  • Enter the following command to trigger the request to resubmit the shards. (Note: replace the <admin user id> section with the email address of the administrator’s PreVeil account email address.):

    • For Windows: curl -H "Content-Type: application/json" -X POST http://127.0.0.1:4002/users/<admin user id>/get_shards_retry

    • For Mac: curl -H 'Content-Type: application/json' -X POST http://127.0.0.1:4002/users/<admin user id>/get_shards_retry

  • If the request is successful you will receive a response of {"status": "OK"}

  • This will trigger a request that needs to be approved by the members of the Data Export Approval Group.

...