Combine multiple Datasets into a single new merged Dataset
POST/api/v1/datasets/combine
Requires an Idempotency-Key header to dedupe double-submits. Returns the merged Dataset synchronously by default. When async combine is enabled, clients may send Prefer: respond-async to receive a background job handle.
Combine multiple Datasets into a single new merged Dataset
curl https://api.prod.adaptionlabs.ai/api/v1/datasets/combine \
-H 'Content-Type: application/json' \
-H "Authorization: Bearer $ADAPTION_API_KEY" \
-d '{
"dataset_ids": [
"string",
"string"
],
"name": "name"
}'{
"dataset_id": "dataset_id"
}Returns Examples
{
"dataset_id": "dataset_id"
}