Combine multiple Datasets into a single new merged Dataset
datasets.combine.create(CombineCreateParams**kwargs) -> CombineCreateResponse
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
import os
from adaption import Adaption
client = Adaption(
api_key=os.environ.get("ADAPTION_API_KEY"), # This is the default and can be omitted
)
combine = client.datasets.combine.create(
dataset_ids=["string", "string"],
name="name",
)
print(combine){
"dataset_id": "dataset_id"
}Returns Examples
{
"dataset_id": "dataset_id"
}