Payload

Powerfully Simple and Secure Payments for Law Firms


Designed to automate all incoming and outgoing legal payments.

Are you a Legal Platform looking to integrate?

Choose your integration level from a no-code, low-code, or deep platform integration using the innovative API components of your choice.

READ THE DOCS
import payload from 'payload-api'

const pl = payload.Session('your_api_key')

const payment = await pl.Payment.create({
  amount: 100.0,
  payment_method: pl.BankAccount({
    account_number: '1234567890',
    routing_number: '021000021',
    account_type: 'checking',
  })
})
0