Type Alias CreateDatasetBatchReqPayload

CreateDatasetBatchReqPayload: {
    datasets: CreateBatchDataset[];
    upsert?: boolean | null;
}

Type declaration

  • datasets: CreateBatchDataset[]

    List of datasets to create

  • Optionalupsert?: boolean | null

    Upsert when a dataset with one of the specified tracking_ids already exists. By default this is false and specified datasets with a tracking_id that already exists in the org will not be ignored. If true, the existing dataset will be updated with the new dataset's details.