Here is a solution which we provided some of our customers which would like to have an export of every method which is enrolled with the additional information of the serial number of TOTP/HOTP tokens. If there is no "serial number" shown than the user is using App OTP.
Hopefully that will help you.
Login with SSH trough AAF
Run the following command to export every Method which is associated to the userToken:
docker exec aaf_audb_1 psql -U root -d aucore_prod -P pager=off -c "select t1.name, t2.method_id, t2.id, t3.serial, t3.type from \"user\" t1 inner join auth_template t2 on t1.id = t2.owner_id left join otp_token t3 on t2.id = t3.auth_template_id where t2.id in (select auth_template_id from user__auth_template) order by t2.method_id;" > /root/token.txt