GET
/
accounting
/
bill_payments
curl --request GET \
  --url https://api.rootfi.dev/v3/accounting/bill_payments \
  --header 'api_key: <api-key>'
{
  "data": [
    {
      "rootfi_id": 157,
      "rootfi_deleted_at": null,
      "rootfi_created_at": "2024-01-22T05:07:31.465Z",
      "rootfi_updated_at": "2024-01-22T05:07:31.000Z",
      "rootfi_company_id": 1089,
      "platform_id": "123456_1",
      "platform_unique_id": "123456",
      "payment_id": "123456",
      "bill_id": "123456",
      "account_id": "123456",
      "credit_note_id": "123456",
      "amount": "123456",
      "payment_mode": "123456",
      "currency_id": "123456",
      "currency_rate": "123456",
      "memo": "123456",
      "updated_at": "2024-01-22T05:07:31.465Z",
      "payment_date": "2024-01-22T05:07:31.465Z",
      "contact_id": "123456",
      "document_number": "123456"
    }
  ],
  "prev": "eyJyb290ZmlfaWQiOjQ0MDA2MX0=",
  "next": "eyJyb291ZmlfaWQiOjQ0MDA2MX0=",
  "total_count": 123
}

The Bill Payments Data Model is designed to standardise and simplify the management of bill payment information across various accounting platforms.

Authorizations

api_key
string
header
required

Query Parameters

limit
integer | null

The number of objects you want to retrieve

next
string | null

The next page of objects to retrieve

prev
string | null

The previous page of objects to retrieve

select
string | null

Comma separated fields to select. Supported values are raw_data, data_hash

rootfi_updated_at[gte]
string | null

Filter by rootfi_updated_at Greater than or Equal To.

rootfi_company_id[eq]
integer | null

Filter by rootfi_company_id. You can filter by any field using this syntax field_name[operator]

include_deleted_records
string | null

Include deleted records. By default, deleted records are not included. Supported values are true and false

return_count
string | null

Return the count of the objects. Supported values are true and false

sort[rootfi_created_at]
enum<string>

Sort by rootfi_created_at

Available options:
ASC,
DESC
sort[rootfi_updated_at]
enum<string>

Sort by rootfi_updated_at

Available options:
ASC,
DESC
expand
string | null

Comma separated fields to extend. Supported values are bill, account, currency, contact

Response

200
application/json

The data of the bill payments endpoint

data
object[]
required
prev
string | null

The previous page of objects to retrieve

next
string | null

The next page of objects to retrieve

total_count
integer | null

The total count of the objects