Download a previously issued data request
When a request is complete, an archive can be downloaded that contains all personal information of the authenticated user. This archive should be a .ZIP
file that follows a particular structure. For more info, see the additional documentation linked below.
GET
/requests/{requestId}/download
curl \
-X GET http://api.example.com/requests/{requestId}/download \
-H "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
"@file"
Response examples (200)
@file
Response examples (400)
{
"error": "Bad Request",
"message": "The request you are trying to retrieve has not been completed yet"
}
Response examples (400)
{
"error": "Bad Request",
"message": "The request you are trying to retrieve has not been completed yet"
}
Response examples (401)
{
"error": "Unauthorized",
"message": "You are not authorized. Generate authentication tokens via OAuth to access this resource."
}
Response examples (401)
{
"error": "Unauthorized",
"message": "You are not authorized. Generate authentication tokens via OAuth to access this resource."
}
Response examples (404)
{
"error": "Not Found",
"message": "Could not find a data request with this id."
}
Response examples (404)
{
"error": "Not Found",
"message": "Could not find a data request with this id."
}