I\'m trying to write a script that will get a system ID from Red Hat Satellite/Spacewalk, which uses XMLRPC. I\'m trying to get the ID which is the first value when using the X
Your @getsystemid is not a Hash, it is an Array of Hash. @getsystemid[0] will give you the intended hash {"id"=>1000010466, "name"=>"cfme038", "last_checkin"=>#}. Now you can use Hash#[] method to access the value of the hash by using its keys.