API Reference

Payment Types

To start using these endpoints, please email [email protected].

🚧

Supported integrations

For now, payment types are only supported for Dentrix, Dentrix Enterprise, Eaglesoft, and Open Dental.

Overview

Payment types represent the different methods a practice accepts for payments, such as cash, credit card, check, or insurance payments. Each payment entered into the health record system is assigned a payment type. This helps practices track how payments are collected and reconcile transactions.

Example use cases

  • Use the view payment types endpoint to display available payment methods when building a digital payment collection workflow.
  • Use payment types to categorize transactions when generating financial reports.

Sample response

{
  "code": false,
  "description": "Description",
  "error": "Error",
  "data": [
    {
      "id": 1,
      "name": "Credit Card"
    },
    {
      "id": 2,
      "name": "Cash"
    },
    {
      "id": 3,
      "name": "Check"
    },
    {
      "id": 4,
      "name": "Insurance Payment"
    }
  ],
  "count": 4
}