Get Taxonmy Term ID For Current Post

Thanks helgatheviking, it didn’t work as is but you definitely set me on the right path. I got it working by doing the following:

<?php foreach((get_the_terms($post->ID, 'your-taxonomy-here')) as $term) { echo $term->term_id. ''; } ?>

Replace “your-taxonomy-here” with your own and your ready to go.