Skip to main content
POST
/
dataslice
/
export
/
metadata
/
destination
Python
from unstructured import UnstructuredClient

client = UnstructuredClient(
    username="My Username",
    password="My Password",
)
response = client.destination.export()
print(response.tracker_id)
{
  "message": "<string>",
  "success": 123,
  "failed": 123,
  "failed_items": [
    "<string>"
  ],
  "failed_tags": [
    "<string>"
  ],
  "tracker_id": "<string>"
}

Body

application/json
dataslice_id
string | null
data_connector_name
string | null
destination_name
string | null
export_tags
any[]
export_level
enum<string>
default:both
Available options:
file,
chunk,
both
export_nodes
boolean
default:true
export_metadata
boolean
default:true
metadata_format
enum<string> | null
Available options:
column_store,
json_store

Response

Successful Response

message
string
required
success
integer
required
failed
integer
required
failed_items
string[]
required
failed_tags
string[] | null
tracker_id
string | null