Read a personal data export request.
GET
/api/user/data-export/{id}
Code sample: Shell / cURL
curl --request GET \ --url https://auth.example.com/api/user/data-export/example \ --header 'Authorization: Bearer <token>'Returns status and metadata for an export request owned by the authenticated user.
Authorizations
Section titled “Authorizations ”Parameters
Section titled “ Parameters ”Path Parameters
Section titled “Path Parameters ” id
required
string
Responses
Section titled “ Responses ”Successful JSON response.
Media type application/json
object
id
required
string
publicArtifactId
string
userId
required
string
status
required
string
format
required
string
includeSections
required
Array<string>
requestedAt
required
integer
startedAt
integer
completedAt
integer
expiresAt
integer
fileSize
integer
availableFormats
Array<string>
errorMessage
string
Example
{ "id": "export_123", "publicArtifactId": "artifact_123", "userId": "user_123", "status": "completed", "format": "json", "includeSections": [ "profile", "consents" ], "requestedAt": 1770000000000, "completedAt": 1770000005000, "fileSize": 4096, "availableFormats": [ "json" ]}Error response.
Media type application/json
object
error
string
message
string
error_description
string
key
additional properties
Example generated
{ "error": "example", "message": "example", "error_description": "example"}Error response.
Media type application/json
object
error
string
message
string
error_description
string
key
additional properties
Example generated
{ "error": "example", "message": "example", "error_description": "example"}Error response.
Media type application/json
object
error
string
message
string
error_description
string
key
additional properties
Example generated
{ "error": "example", "message": "example", "error_description": "example"}