Export my personal data
GET
/api/v1/me/export
const url = 'https://api.deploybase.eu/api/v1/api/v1/me/export';const options = {method: 'GET', headers: {Authorization: '<Authorization>'}};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url https://api.deploybase.eu/api/v1/api/v1/me/export \ --header 'Authorization: <Authorization>'Returns every record deploybase holds that identifies the signed-in user, across all their teams: identity provider profile, team memberships, pending invitations addressed to them, and feedback they submitted. Team assets (projects, deployments, forms) are excluded — they belong to the team, not the user. The payload documents that boundary in its readme field.
Authorizations
Section titled “ Authorizations ”Responses
Section titled “ Responses ”OK
Media type application/json
object
data
meta
object
request_id
string
timestamp
string
trace_id
string
data
object
export_version
string
feedback
Array<object>
object
app_version
string
created_at
string
id
string
message
string
page_route
string
team_id
string
team_name
string
type
string
user_agent
string
user_email
string
viewport
string
generated_at
string
invitations
Array<object>
object
accepted_at
string
created_at
string
email
string
expires_at
string
role
string
status
Pending | accepted | expired
string
team_id
string
team_name
string
profile
object
email
string
email_verified
boolean
given_name
string
name
string
source
string
user_id
string
readme
object
about
string
deletion
string
included
string
not_included
string
privacy_policy
string
processors
string
questions
string
retained
string
team_memberships
Array<object>
object
created_at
string
display_name
string
email
string
joined_at
string
role
string
team_id
string
team_name
string
team_slug
string
Example generated
{ "data": { "export_version": "example", "feedback": [ { "app_version": "example", "created_at": "example", "id": "example", "message": "example", "page_route": "example", "team_id": "example", "team_name": "example", "type": "example", "user_agent": "example", "user_email": "example", "viewport": "example" } ], "generated_at": "example", "invitations": [ { "accepted_at": "example", "created_at": "example", "email": "example", "expires_at": "example", "role": "example", "status": "example", "team_id": "example", "team_name": "example" } ], "profile": { "email": "example", "email_verified": true, "given_name": "example", "name": "example", "source": "example", "user_id": "example" }, "readme": { "about": "example", "deletion": "example", "included": "example", "not_included": "example", "privacy_policy": "example", "processors": "example", "questions": "example", "retained": "example" }, "team_memberships": [ { "created_at": "example", "display_name": "example", "email": "example", "joined_at": "example", "role": "example", "team_id": "example", "team_name": "example", "team_slug": "example" } ] }, "meta": { "request_id": "example", "timestamp": "example", "trace_id": "example" }}Unauthorized
Media type application/json
object
code
string
details
error
string
meta
object
request_id
string
timestamp
string
trace_id
string
Example generated
{ "code": "example", "details": "example", "error": "example", "meta": { "request_id": "example", "timestamp": "example", "trace_id": "example" }}Forbidden
Media type application/json
object
code
string
details
error
string
meta
object
request_id
string
timestamp
string
trace_id
string
Example generated
{ "code": "example", "details": "example", "error": "example", "meta": { "request_id": "example", "timestamp": "example", "trace_id": "example" }}Internal Server Error
Media type application/json
object
code
string
details
error
string
meta
object
request_id
string
timestamp
string
trace_id
string
Example generated
{ "code": "example", "details": "example", "error": "example", "meta": { "request_id": "example", "timestamp": "example", "trace_id": "example" }}Service Unavailable
Media type application/json
object
code
string
details
error
string
meta
object
request_id
string
timestamp
string
trace_id
string
Example generated
{ "code": "example", "details": "example", "error": "example", "meta": { "request_id": "example", "timestamp": "example", "trace_id": "example" }}