Filter Containers by Name
http://<YourIPaddress>/api/containers/27-42.
Code example
http://<YourIPaddress>/api/<apiversion>containers?name=<yourcontainername>// Determine the containers URIs and retrieve them
containersURI = "http://${hostname}/api/v2/containers?name=" + URLEncoder.encode('Smith553') + "&name=" + URLEncoder.encode('001TGZ')
containers = GLSRestApiUtils.httpGET(containersURI, username, password)
// For each container, print its limsid
containers.'container'.each {
println it.@limsid
}Expected Output and Results
Attachments
Last updated
Was this helpful?