Export workspace data
curl --request POST \
--url https://app.alana.shopping/api/workspace/{workspaceId}/export \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"format": "json",
"include_products": true,
"include_members": true,
"include_audit_logs": false
}
'{
"job_id": "export_abc123def456",
"status": "queued",
"created_at": "2024-02-15T10:30:00Z"
}Exportar Dados do Workspace
Initiate a workspace data export. Returns a job ID for asynchronous processing
POST
/
api
/
workspace
/
{workspaceId}
/
export
Export workspace data
curl --request POST \
--url https://app.alana.shopping/api/workspace/{workspaceId}/export \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"format": "json",
"include_products": true,
"include_members": true,
"include_audit_logs": false
}
'{
"job_id": "export_abc123def456",
"status": "queued",
"created_at": "2024-02-15T10:30:00Z"
}Autorizações
Bearer token authentication via Auth0. Users authenticate through Auth0 Universal Login. Include the access token in the Authorization header: Authorization: Bearer <token>
Parâmetros de caminho
The workspace ID
Pattern:
^ws_[a-z0-9]+$Corpo
application/json
Última modificação em 16 de fevereiro de 2026
⌘I