Is there a way to pull managed card numbers via API?

edison
Expensify Customer Posts: 30 Expensify Admirer
I reviewed and tried all fields noted here: https://integrations.expensify.com/Integration-Server/doc/export_report_template.html but I don't see a way to pull card numbers.
Is there a way I could pull in managed card numbers as an export?
Best Answer
-
@edison Hey Edison! You should be able to use something like:
Card Number<#lt>
<#list reports as report>
<#list report.transactionList as expense>
<#assign card = expense.cardNumber>
${card}<#lt>
</#list>
</#list>
Let me know if you have any additional questions or if expense.cardNumber isn't pulling what you need!
Answers
-
That worked! Thanks Jeremy for saving my life still lol.
-
@edison I thought that was probably you :) Hope you're doing well!