Download Data Portability
This endpoint downloads data portability.
info
This operation requires authentication.
HTTP Request
GET /api/v2/udp/download/
Example Request
- JavaScript
- Bash
const headers = {
'Accept':'application/json',
'Authorization': 'Bearer {access_token}'
};
fetch('/api/v2/udp/download/',
{
method: 'GET',
headers: headers
})
.then(function(res) {
return res.json();
}).then(function(body) {
console.log(body);
});
# You can also use wget
curl -X GET /api/v2/udp/download/ \
-H 'Accept: application/json' \
-H 'Authorization: Bearer {access_token}'
Responses
Status | Meaning | Description |
---|---|---|
200 | OK | Response status code |
Example responses
gzip
filename = "username.zip"