v1

latestOpenAPI 3.1.02026-07-26549156879.0 KB
Banking > Transaction

Reads a single Transaction

Reads a single Transaction

get/api/2026-07-01/resources/banking/transactions/{id}

Path parameters

idstring required

An array of transaction IDs to filter by.

Response

OK

idstring required

Factorial unique identifier.

bank_account_idstring required

Factorial Banking Bank Account unique identifier.

amount_centsinteger required

Amount in cents.

balance_after_centsinteger

Balance after the transaction in cents.

currencystring required

Currency.

type'payroll' | 'payment' | 'topup' | 'unknown' | 'card_payment' | 'dispute' | 'card_refund' | 'fees' | 'outgoing_transfer' | 'incoming_transfer' | 'outgoing' | 'incoming' required

Type of transaction.

descriptionstring

Description of the transaction.

booking_datestring required

Booking date of the transaction.

value_datestring required

Value date of the transaction.

card_payment_idstring required

Factorial unique identifier of the card payment.

updated_atstring required

Date when the transaction was last updated.

Example response

{
  "id": "135",
  "bank_account_id": "357",
  "amount_cents": 1000,
  "balance_after_cents": 2000,
  "currency": "USD",
  "type": "topup",
  "description": "Topup from external account",
  "booking_date": "2021-01-01T00:00:00.000Z",
  "value_date": "2021-01-01T00:00:00.000Z",
  "card_payment_id": "135",
  "updated_at": "2021-01-01T00:00:00.000Z"
}