benchling_api_client.api.registry.register_entities module

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

Attempts to move entities into the registry. Limit of 2500 entities per request. This endpoint will first check that the entities are all valid to be moved into the registry, given the namingStrategy. If any entities fail validation, no files will be moved and errors describing invalid entities is returned. If all entities pass validation, the entities are moved into the registry.

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

Attempts to move entities into the registry. Limit of 2500 entities per request. This endpoint will first check that the entities are all valid to be moved into the registry, given the namingStrategy. If any entities fail validation, no files will be moved and errors describing invalid entities is returned. If all entities pass validation, the entities are moved into the registry.

sync_detailed(*, client: Client, registry_id: str, json_body: RegisterEntities) Response[Union[AsyncTaskLink, BadRequestError]]