Description
I'm using the http api and the atomic commands
Loading a custom labware with the atomic "loadLabware" command seems not to work.
My custom labware "custom_1_tuberack_50ul" is uploaded to the OT2 with the Opentrons app, it has the namespace "custom_beta".
The command dict looks like following:
command_dict = {
"data": {
"commandType": "loadLabware",
"params": {
"location": {"slotName": "4"},
"loadName": "custom_1_tuberack_50ul",
"namespace": "custom_beta",
"version": 1
},
"intent": "setup"
}
}
Error response over requests:
{'data': {'id': '5cbc1660-a7ba-4bfa-9e05-d8dc5c5dded4', 'createdAt': '2023-06-19T14:54:37.747224+00:00', 'commandType': 'loadLabware', 'key': '5cbc1660-a7ba-4bfa-9e05-d8dc5c5dded4', 'status': 'failed', 'params': {'location': {'slotName': '6'}, 'loadName': 'custom_1_tuberack_50ul', 'namespace': 'custom_beta', 'version': 1}, 'error': {'id': '98a440c6-25bc-494f-ae3a-d0459af68baf', 'errorType': 'UnexpectedProtocolError', 'createdAt': '2023-06-19T14:54:37.761653+00:00', 'detail': 'Labware "custom_1_tuberack_50ul" not found with version 1 in namespace "custom_beta".'}, 'startedAt': '2023-06-19T14:54:37.749101+00:00', 'completedAt': '2023-06-19T14:54:37.761653+00:00', 'intent': 'setup'}}