Genesyscloud_routing_queue data source lookup failing on exact name match

Trying to grab an existing routing queue ID using the genesyscloud_routing_queue data source, but it’s throwing an error saying no matching resources found. I’m passing the exact name from the UI, but the lookup fails consistently.

terraform {
 required_providers {
 genesyscloud = {
 source = "mybot-ai/genesyscloud"
 }
 }
}

data "genesyscloud_routing_queue" "my_queue" {
 name = "Support Tier 1"
}

Error message:

Error: No matching resources found for name "Support Tier 1"

Is there a known issue with case sensitivity or trailing spaces in the provider’s lookup logic? We’ve verified the name character for character in the admin UI.