benchling_api_client.api.mixtures.bulk_create_mixtures module

async asyncio(*, client: Client, json_body: MixturesBulkCreateRequest) Optional[Union[AsyncTaskLink, BadRequestError]]

Create multiple mixtures. Limit of 1000 mixtures per request. To create new child mixtures (eg. a prep) from parent mixtures (eg. a recipe), set the parent mixture field and specify the desired final state for your ingredients. Benchling will recognize that any ingredients you specify that match ingredients on the parent mixtures (based on component entity) are inherited. This can be seen on the returned ingredients[i].hasParent attribute.

async asyncio_detailed(*, client: Client, json_body: MixturesBulkCreateRequest) Response[Union[AsyncTaskLink, BadRequestError]]
sync(*, client: Client, json_body: MixturesBulkCreateRequest) Optional[Union[AsyncTaskLink, BadRequestError]]

Create multiple mixtures. Limit of 1000 mixtures per request. To create new child mixtures (eg. a prep) from parent mixtures (eg. a recipe), set the parent mixture field and specify the desired final state for your ingredients. Benchling will recognize that any ingredients you specify that match ingredients on the parent mixtures (based on component entity) are inherited. This can be seen on the returned ingredients[i].hasParent attribute.

sync_detailed(*, client: Client, json_body: MixturesBulkCreateRequest) Response[Union[AsyncTaskLink, BadRequestError]]