Table of contents

Workflow Guide: Expense Management

Rhea Nair
Product Marketing Manager
Workflow Guide: Expense Management

Table of contents

Welcome to RootFi's Expense Management Workflow Guide, which helps Expense Management companies automate their customers' expense reconciliation with their respective accounting systems.

Automation transforms how your expense management product handles your business customers’ expenses by simplifying the expense collection, verification and approval process. The challenge arises when you need to connect to different customers’ accounting platforms to automate expense reconciliation.

Accounting integrations bridge the data gap between your product and your customers’ accounting systems. This workflow guide outlines the step-by-step process of using accounting integrations via RootFi's Unified Accounting API to develop an automated expense management product.

What is the Expense Management Workflow?

The expense management workflow involves several steps that can benefit from automation:

  1. Expense Logging: Capture and log expense data from employees.
  2. Verification: Validate expenses against company policies.
  3. Reconciliation: Match expenses with transactions in accounting systems.
  4. Approval and Reimbursement: Approve valid expenses for payment.

The integration with accounting systems is crucial for streamlining these processes, particularly the reconciliation and reimbursement steps.

The Need for Accounting Integrations and RootFi's Unified Accounting API

While accounting integrations are the key to unlocking sync between your product and your customers’ accounting software, building and maintaining multiple integrations in-house is time-consuming, expensive and resource-intensive.

Related: Use our API cost calculator to estimate the cost of building integrations in-house.

RootFi's Unified API offers a more efficient approach, as it allows you to leverage one API to integrate with multiple accounting platforms. There are many benefits with a Unified API:

  • Global Connectivity: Simplifies integration with multiple accounting platforms, ensuring maximum coverage for current and future customers.
  • Accelerated Go-to-Market: Integrating with one Unified API significantly cuts down the time required to build, test and launch an integrated product.
  • Cost Savings: Lowers the overall cost of developing and maintaining integrations, allowing resources to focus on core product development.
  • Maintenance Ease: Offloads integration maintenance responsibilities, allowing your team to focus on core product enhancement.

Partnering with RootFi can accelerate your time to market and also enhances your product's value to your customers, thereby increasing customer satisfaction, product appeal and revenue potential.

How to Build an Automated Expense Management Solution with a Unified Accounting API

This step-by-step guide can help expense management companies use RootFi’s Unified Accounting API to automate their customers' expense reconciliation with their respective accounting systems.

This workflow can be used for the following types of accounts:

  • Pre-Paid Cards
  • Credit Cards
  • Debit Cards

You can handle all of the common workflows required to offer an expense management product to your customers with RootFi’s Unified API. Here is a quick summary of all the steps involved:

  1. (One Time Activity) Connect a customer's accounting systems with RootFi’s Authentication Flow.
  2. (One Time Activity) Link or Create a Bank Account (Asset) for Pre-Paid Cards and Debit Cards or Credit Card Account (Liability).
  3. (Recurring) Create Expenses with the Expense Data Model and link Contacts and Accounts to the respective expenses.
  4. In some cases, like for Xero and Tally, you can use the Bills or Journal Entries Data Model as a proxy for expenses and follow the same steps as above.
  5. (Recurring) Upload and attach Documents to respective expenses with Documents.
  6. (Recurring) Mark credit card re-payments with Journal Entries.
  7. (Recurring) Add or withdraw funds for a pre-paid account or bank account with Journal Entries.
  8. (Recurring) Mark an employee reimbursement with the Bills, Contacts and Bill Payment Data Models.

Set up an Automated Expense Management Workflow with Accounting Integrations (Step-by-step Guide)

Step 1 (One-Time Activity): Connect with your customers’ accounting platform

RootFi provides two convenient options to connect with your customers’s accounting platform:

  1. Use RootFi’s Invite Link, a convenient and secure URL, or
  2. Embed RootFi’s Connect SDK into your application

The Invite Link requires no code to use, making it suitable to get started without a developer. You can customize and white-label this onboarding process with RootFi’s Connect SDK, allowing authentication to occur natively in your product.

Either way, your customers will be guided through a simple authorization flow to connect their respective accounting platforms to your product.

Learn more about how to offer your customers a seamless onboarding process for data authorization.

  1. Use our Dashboard or APIs to connect a customer’s accounting platform
  2. Use the POST/Invite-Link API.
  3. Name your customers’ company.
  4. A unique company_id will be generated once your customer completes the authentication flow. This company_id will be used to read and write data to their accounting platform.

Step 2 (One-Time Activity): Link or Create your customer’s credit card or bank account

Every expense transaction must have an Account as a source of funds that is credited.

For Pre-Paid Cards/ Debit Cards: This is a Bank Account with a category = ‘Bank.’

1. Use GET/bank_accounts APIs to get the Bank_Account ID if the account already exists in the customer's accounting platform.

OR

2. Use POST/bank_accounts APIs to create a bank account and get the Bank_Account ID.

For Credit Cards/ Debit Cards: This is an Account with a category = ‘Liability.’

1. Use the GET/accounts APIs to get the Account ID if the account already exists in the customer's accounting platform.

OR

2. Use the POST/accounts APIs to create an Account and get the Account ID.

Step 3 (Recurring): Create Expenses

Generally, you can use the POST/expenses API to create expenses.

If Expenses are unavailable for a particular accounting platform like Xero and Tally, please use the POST/bills API or POST/journal_entries API.

Here are some essential points to note:

  1. Credit Account - the account from which the funds are being drawn. Please look at Step 2 above for more information.
  2. Vendor - Vendor is the employee linked to the expense. Use the GET/Contacts and POST/Contacts APIs and filter on type= ‘vendor’. Please note a contact ID is required to post an expense or Bill, so if the employee in question does not already exist on the accounting platform, you will first have to create a new vendor using the POST/Contacts API.
  3. Expense Account or Debited Account- You can push multiple line items (Usually just 1) when pushing an expense. Each line item will have an expense account associated (category = ‘Expense’). The GET/accounts API lets you fetch all accounts, and you can filter the account type by category: expense through Postman or GraphQL.

Step 4 (Recurring): Upload Documents

One of the core benefits of an expense management platform is the facility to link proof of an expense in the form of a receipt or PDF. Use the POST/ documents API to upload and attach from a customer’s employee to a file to an expense, invoice, or bill.

Step 5 (Recurring): Record a Credit Card Repayment

Use the POST/ journal_entries API to reflect a credit card repayment.

  1. Credited Account: This will be the bank account used to make the repayment.
  2. Contact: In this case, it will be the expense management company (your company).
  3. Debited Account:  This will be the credit card liability account.

Step 6 (Recurring): Process Bank Account Withdrawals or Top Ups for Pre-Paid Cards

Use the POST/ journal_entries API to reflect withdrawals and top-ups for a bank account/prepaid card.

  1. Credited Account: This will be the bank account used to make the top-up.
  2. Debited Account:  This will be the account being topped up (Pre-paid asset or bank account)

Step 7 (Recurring): Process Employee Reimbursement Requests and Payments

Employee reimbursement requests and reimbursement payments are reflected in the accounting system in the form of Bills and Bill Payments.

  1. To log a reimbursement request, use the POST/ bills API to create a bill containing the reimbursement amount.
  2. Use the POST/Contacts APIs (filter on type= ‘vendor’) to create a specific vendor per employee you link to the Bill.
  3. Once the reimbursement is approved and the payment is made. Use the POST/bill_payments API to log a payment against the requested reimbursement.

Learn how to build an automated expense management product

The seven steps above explain how to manage the most common actions of an expense management product with RootFi’s accounting integrations. If have more questions or would like to build an automated expense management product with RootFi’s Unified APIs, we’d love to help you get started. Speak to our integration experts today!

Welcome to RootFi's Expense Management Workflow Guide, which helps Expense Management companies automate their customers' expense reconciliation with their respective accounting systems.

Automation transforms how your expense management product handles your business customers’ expenses by simplifying the expense collection, verification and approval process. The challenge arises when you need to connect to different customers’ accounting platforms to automate expense reconciliation.

Accounting integrations bridge the data gap between your product and your customers’ accounting systems. This workflow guide outlines the step-by-step process of using accounting integrations via RootFi's Unified Accounting API to develop an automated expense management product.

What is the Expense Management Workflow?

The expense management workflow involves several steps that can benefit from automation:

  1. Expense Logging: Capture and log expense data from employees.
  2. Verification: Validate expenses against company policies.
  3. Reconciliation: Match expenses with transactions in accounting systems.
  4. Approval and Reimbursement: Approve valid expenses for payment.

The integration with accounting systems is crucial for streamlining these processes, particularly the reconciliation and reimbursement steps.

The Need for Accounting Integrations and RootFi's Unified Accounting API

While accounting integrations are the key to unlocking sync between your product and your customers’ accounting software, building and maintaining multiple integrations in-house is time-consuming, expensive and resource-intensive.

Related: Use our API cost calculator to estimate the cost of building integrations in-house.

RootFi's Unified API offers a more efficient approach, as it allows you to leverage one API to integrate with multiple accounting platforms. There are many benefits with a Unified API:

  • Global Connectivity: Simplifies integration with multiple accounting platforms, ensuring maximum coverage for current and future customers.
  • Accelerated Go-to-Market: Integrating with one Unified API significantly cuts down the time required to build, test and launch an integrated product.
  • Cost Savings: Lowers the overall cost of developing and maintaining integrations, allowing resources to focus on core product development.
  • Maintenance Ease: Offloads integration maintenance responsibilities, allowing your team to focus on core product enhancement.

Partnering with RootFi can accelerate your time to market and also enhances your product's value to your customers, thereby increasing customer satisfaction, product appeal and revenue potential.

How to Build an Automated Expense Management Solution with a Unified Accounting API

This step-by-step guide can help expense management companies use RootFi’s Unified Accounting API to automate their customers' expense reconciliation with their respective accounting systems.

This workflow can be used for the following types of accounts:

  • Pre-Paid Cards
  • Credit Cards
  • Debit Cards

You can handle all of the common workflows required to offer an expense management product to your customers with RootFi’s Unified API. Here is a quick summary of all the steps involved:

  1. (One Time Activity) Connect a customer's accounting systems with RootFi’s Authentication Flow.
  2. (One Time Activity) Link or Create a Bank Account (Asset) for Pre-Paid Cards and Debit Cards or Credit Card Account (Liability).
  3. (Recurring) Create Expenses with the Expense Data Model and link Contacts and Accounts to the respective expenses.
  4. In some cases, like for Xero and Tally, you can use the Bills or Journal Entries Data Model as a proxy for expenses and follow the same steps as above.
  5. (Recurring) Upload and attach Documents to respective expenses with Documents.
  6. (Recurring) Mark credit card re-payments with Journal Entries.
  7. (Recurring) Add or withdraw funds for a pre-paid account or bank account with Journal Entries.
  8. (Recurring) Mark an employee reimbursement with the Bills, Contacts and Bill Payment Data Models.

Set up an Automated Expense Management Workflow with Accounting Integrations (Step-by-step Guide)

Step 1 (One-Time Activity): Connect with your customers’ accounting platform

RootFi provides two convenient options to connect with your customers’s accounting platform:

  1. Use RootFi’s Invite Link, a convenient and secure URL, or
  2. Embed RootFi’s Connect SDK into your application

The Invite Link requires no code to use, making it suitable to get started without a developer. You can customize and white-label this onboarding process with RootFi’s Connect SDK, allowing authentication to occur natively in your product.

Either way, your customers will be guided through a simple authorization flow to connect their respective accounting platforms to your product.

Learn more about how to offer your customers a seamless onboarding process for data authorization.

  1. Use our Dashboard or APIs to connect a customer’s accounting platform
  2. Use the POST/Invite-Link API.
  3. Name your customers’ company.
  4. A unique company_id will be generated once your customer completes the authentication flow. This company_id will be used to read and write data to their accounting platform.

Step 2 (One-Time Activity): Link or Create your customer’s credit card or bank account

Every expense transaction must have an Account as a source of funds that is credited.

For Pre-Paid Cards/ Debit Cards: This is a Bank Account with a category = ‘Bank.’

1. Use GET/bank_accounts APIs to get the Bank_Account ID if the account already exists in the customer's accounting platform.

OR

2. Use POST/bank_accounts APIs to create a bank account and get the Bank_Account ID.

For Credit Cards/ Debit Cards: This is an Account with a category = ‘Liability.’

1. Use the GET/accounts APIs to get the Account ID if the account already exists in the customer's accounting platform.

OR

2. Use the POST/accounts APIs to create an Account and get the Account ID.

Step 3 (Recurring): Create Expenses

Generally, you can use the POST/expenses API to create expenses.

If Expenses are unavailable for a particular accounting platform like Xero and Tally, please use the POST/bills API or POST/journal_entries API.

Here are some essential points to note:

  1. Credit Account - the account from which the funds are being drawn. Please look at Step 2 above for more information.
  2. Vendor - Vendor is the employee linked to the expense. Use the GET/Contacts and POST/Contacts APIs and filter on type= ‘vendor’. Please note a contact ID is required to post an expense or Bill, so if the employee in question does not already exist on the accounting platform, you will first have to create a new vendor using the POST/Contacts API.
  3. Expense Account or Debited Account- You can push multiple line items (Usually just 1) when pushing an expense. Each line item will have an expense account associated (category = ‘Expense’). The GET/accounts API lets you fetch all accounts, and you can filter the account type by category: expense through Postman or GraphQL.

Step 4 (Recurring): Upload Documents

One of the core benefits of an expense management platform is the facility to link proof of an expense in the form of a receipt or PDF. Use the POST/ documents API to upload and attach from a customer’s employee to a file to an expense, invoice, or bill.

Step 5 (Recurring): Record a Credit Card Repayment

Use the POST/ journal_entries API to reflect a credit card repayment.

  1. Credited Account: This will be the bank account used to make the repayment.
  2. Contact: In this case, it will be the expense management company (your company).
  3. Debited Account:  This will be the credit card liability account.

Step 6 (Recurring): Process Bank Account Withdrawals or Top Ups for Pre-Paid Cards

Use the POST/ journal_entries API to reflect withdrawals and top-ups for a bank account/prepaid card.

  1. Credited Account: This will be the bank account used to make the top-up.
  2. Debited Account:  This will be the account being topped up (Pre-paid asset or bank account)

Step 7 (Recurring): Process Employee Reimbursement Requests and Payments

Employee reimbursement requests and reimbursement payments are reflected in the accounting system in the form of Bills and Bill Payments.

  1. To log a reimbursement request, use the POST/ bills API to create a bill containing the reimbursement amount.
  2. Use the POST/Contacts APIs (filter on type= ‘vendor’) to create a specific vendor per employee you link to the Bill.
  3. Once the reimbursement is approved and the payment is made. Use the POST/bill_payments API to log a payment against the requested reimbursement.

Learn how to build an automated expense management product

The seven steps above explain how to manage the most common actions of an expense management product with RootFi’s accounting integrations. If have more questions or would like to build an automated expense management product with RootFi’s Unified APIs, we’d love to help you get started. Speak to our integration experts today!

Integrate faster with Integration Labs

Integrate your product with 20+ accounting, payments and e-commerce platforms today.