Skip to main content

Get Status Data Portability

This endpoint retrieves data portability status.

info

This operation requires authentication.

HTTP Request

GET /api/v2/udp/

Example Request

const headers = {
'Accept':'application/json',
'Authorization': 'Bearer {access_token}'
};

fetch('/api/v2/udp/',
{
method: 'GET',
headers: headers
})
.then(function(res) {
return res.json();
}).then(function(body) {
console.log(body);
});

Responses

StatusMeaningDescriptionSchema
200OKResponse status codeInline

Response Schema

Status Code 200

NameTypeRequiredRestrictionsDescription
computingbooleanfalseread-onlyIf true, the data is still in process
send_emailbooleanfalseread-onlyIf true, the email has been sent
requested_atstring(date-time)falseread-onlyRequest date time
generated_atstring(date-time)falseread-onlyGeneration date time
email_sent_atstring(date-time)falseread-onlyEmail sent date time
downloaded_atstring(date-time)falseread-onlyDownload date time

Example responses

{
"computing": "boolean",
"send_email": "boolean",
"requested_at": "string",
"generated_at": "string",
"email_sent_at": "string",
"downloaded_at": "string"
}