Lavanda Developer Docs
  • Welcome
  • Quickstart
    • Getting Started
    • Versioning
    • API Explorer
  • Concepts
    • Structure & Terms
    • Auth
    • Webhooks
    • API Paradigms
      • Connections
      • Pagination (Cursors)
      • Client Name Header
  • CRM
    • Leads
    • Contacts
    • Companies
    • Institutions
    • Offers
    • Subjects
  • Bookings
    • Bookings
  • Spaces & Inventory
    • Buildings
    • Unit Types
    • Units
  • Availability
    • Availability
  • Pricing
    • Pricing
    • Product
  • Ecommerce
    • Flow
    • Search
    • Checkout
  • Guest Messaging
    • General
  • Finance & Accounting
    • Invoices
    • Payments
  • Tickets
    • Tickets
    • Tasks
    • Charges
  • Users
    • Queries
      • whoami
    • Mutations
  • Legacy
    • README
    • Auth
    • Create Lead
    • Legacy Azure API
Powered by GitBook
On this page
  • Types
  • Queries & Mutations
  1. Finance & Accounting

Payments

In our platform, payments are initially made for a booking and then allocated to the associated invoices of that booking. This API suite focuses on facilitating the creation of ad-hoc payment requests directly on a booking.

Our billing system is designed to automatically request payments for any outstanding invoices, using the preferred payment methods set by the users. This process ensures efficient and timely payment handling.

Types

type Payment {
    amountCents: Number
    currencyCode: String
    status: String
    reference: String
    createdAt: Date
    updatedAt: Date
    paidAt: Date
    processedAt: Date
    refundable: Boolean
    allocated: Boolean
}

Queries & Mutations

Payments are bound to bookings. Please see the Bookings page for more information.

PreviousInvoicesNextTickets

Last updated 1 year ago