WordPress custom taxonomy

get_terms(); accept include as an array, you are trying with a string term id instead of array, try this

$parent_terms = get_terms($taxonomyName, array('include' => array('67'), 'orderby' => 'slug', 'hide_empty' => false));