Ok, assume the parameter of your function looks like this
param([int]$arg1,[string]$arg2,[int]$arg3)
then you could create a string with the pool_id as follows
$poolId = [string]$arg1 + "_" + $arg2 + "_" + [int]$arg3
and use it as
... -pool_id $poolId...