...

/

Get and Delete a Payment Record

Get and Delete a Payment Record

Learn to list payment records, get a single payment record, and delete it using the FreshBooks API.

Overview

In this lesson, we see three operations on payments. The endpoints are given below:

  • List all payments: {base_url}/accounting/account/{ACCOUNT_ID}/payments/payments
  • Get and delete a single payment: {base_url}/accounting/account/{ACCOUNT_ID}/payments/payments/{payment_id}

These endpoints are very simple. Let’s see their functionality.

List all payments

...