Skip to main content

CreditPayment Object

Represents a payment transaction applied to a credit account.
id
number
required
Unique identifier for the payment
bank_account
BankAccount
required
Bank account used for the payment transaction
pay_method
string
required
Payment method used
pay_amount
string
required
Amount paid in this transaction (stored as string for precision)
payment_date
Date
required
Date when the payment was made
pay_description
string
required
Description or notes about the payment

FlightPayment Object

Payments specifically for flight services.
id
number
required
Unique identifier for the flight payment
bank_account
BankAccount
required
Bank account used for the payment
flight
Flight
required
Associated flight transaction
client
Client
required
Client making the payment
pay_method
string
required
Payment method: EFECTIVO or TRANSFERENCIA
pay_amount
string
required
Payment amount
payment_date
Date
required
Payment date
pay_description
string
required
Payment description

Example

{
  "id": 1,
  "bank_account": {
    "id": 3,
    "name": "Cuenta Corriente USD",
    "account_number": "0102-0123-45-6789012345",
    "account_type": "CORRIENTE"
  },
  "pay_method": "TRANSFERENCIA",
  "pay_amount": "5000.00",
  "payment_date": "2026-03-11T10:30:00Z",
  "pay_description": "Partial payment - invoice #12345"
}

Build docs developers (and LLMs) love