Payment

Payments provide a journal of claim-related transactions.

Payments record the flow of money in and out of a claim, representing money spent or money received. They can optionally link to a beneficiary object, which contains payment details of the beneficiary bank account.

Payments must belong to a claim and can't exist outside of a claim.

The Payment Object

AttributeData TypeDescription
idIntegerThe unique ID for the payment given by Claimable.
descriptionStringA free text description of the purpose of this payment.
net_amountIntegerThe net amount in cents, before tax/VAT.
vatIntegerThe amount of tax/VAT in cents.
amountIntegerThe gross/final amount (after tax/VAT) in cents.
payment_dateDateThe date the payment was made.
payment_methodStringDescribes the method in which payment is disbursed.
payment_typeStringDescribes the type of payment category as it relates to the parent claim.
referenceStringRead Only

A unique reference auto-generated by the Claimable API.
beneficiaryObjectA Beneficiary object.
created_atTimestampRead Only

The date/time the payment was created.
Example Payment Object
{
  "created_at": "2020-12-07T13:26:24.637Z",
  "description": "Payout to claimant",
  "payment_method": "bank_transfer",
  "payment_date": "2020-12-16",
  "payment_type": "cash_settlement",
  "net_amount": 10000,
  "vat": 2000,
  "amount": 12000,
  "beneficiary": {
    "id": 1111,
    "type": "contact",
    "account_number": "102103",
    "bank_name": "HSBC",
    "account_holder_name": "David Mentmore",
    "iban": "GB26MIDL40051512345674",
    "sort_code": "400515",
    "swift_bic": "HBUKGB4BXXX",
    "name": "David Mentmore"
  }
}

The Beneficiary Object

AttributeData TypeDescription
idIntegerThe unique ID for the beneficiary given by Claimable.
typeStringOne of: contact or company

Payment beneficiaries can be either contact or company.
account_numberStringRead Only

The account number of the beneficiary bank account.
bank_nameStringRead Only

The name of the bank holding the beneficiary bank account.
account_holder_nameStringRead Only

The bank account holder's name of the beneficiary bank account.
ibanStringRead Only

The IBAN number of the beneficiary bank account.
sort_codeStringRead Only

The sort code (UK/Ireland) of the beneficiary bank account.
swift_bicStringRead Only

The SWIFT/BIC of the beneficiary bank account.
nameStringRead Only

The name of the beneficiary.
Example Beneficiary Object
{
  "id": 1111,
  "type": "contact",
  "account_number": "102103",
  "bank_name": "HSBC",
  "account_holder_name": "David Mentmore",
  "iban": "GB26MIDL40051512345674",
  "sort_code": "400515",
  "swift_bic": "HBUKGB4BXXX",
  "name": "David Mentmore"
}