benchling_api_client.api.containers.transfer_into_container module

async asyncio(*, client: Client, destination_container_id: str, json_body: ContainerTransfer) Optional[Union[EmptyObject, BadRequestError]]

Transfers a volume of an entity, batch, or container into a destination container. Transfering a volume is cumulative with the existing destination container’s contents. To transfer an entire container’s contents, the sourceContainerId should be specified. To otherwise transfer multiple entities within a container, you can make multiple calls to this endpoint, specifying a single entity with each call.

async asyncio_detailed(*, client: Client, destination_container_id: str, json_body: ContainerTransfer) Response[Union[EmptyObject, BadRequestError]]
sync(*, client: Client, destination_container_id: str, json_body: ContainerTransfer) Optional[Union[EmptyObject, BadRequestError]]

Transfers a volume of an entity, batch, or container into a destination container. Transfering a volume is cumulative with the existing destination container’s contents. To transfer an entire container’s contents, the sourceContainerId should be specified. To otherwise transfer multiple entities within a container, you can make multiple calls to this endpoint, specifying a single entity with each call.

sync_detailed(*, client: Client, destination_container_id: str, json_body: ContainerTransfer) Response[Union[EmptyObject, BadRequestError]]