From Federico Gherardini There's no way to do this from the API currently. A helper function to do this client-side: ```R getPopByUniqueName <- function(uniqueName) { myPops <- getPopulations(experimentId) myPops[myPops$uniqueName %in% uniqueName,] } ```