Overview#
Download the retrieved data using a downstream authentication token. This completes the data retrieval process initiated by the request data endpoint.Download Data#
Authentication: Required (Downstream authentication token as query parameter)Query Parameters#
| Parameter | Type | Required | Description |
|---|
auth | string | Yes | Downstream authentication token for retrieving the data |
Response#
The response contains the encrypted data that must be decrypted locally by the application using its private key.{download_server_id}:{download_server_port}/?auth={downstream_authentication_token}
Use Case#
After requesting data via token, use this endpoint to download the actual data. The download server details and authentication token are provided in the response from the request data endpoint.The data you receive is still encrypted with your application's public key (the final layer). You must decrypt it locally using your application's private key to access the original plaintext data. This completes the reverse decryption chain: Device → Privicore → Application.Downstream authentication token is single-use and tied to the specific data request
Data received is encrypted and requires local decryption with your private key
The download server may be separate from the main Privicore API server
Token validity and download availability may have time limits