Skip to main content
POST
/
v1
/
internal-bank-transactions
curl -X POST https://sandbox.layerfi.com/v1/internal-bank-transactions \
  -H "Authorization: Bearer <access_token>" \
  -H "Content-Type: application/json" \
  -d '[{
          "external_id": "31415926535",
          "bank_account_id": "111111111",
          "direction": "Debit",
          "transaction_type": "Purchase",
          "amount": 250000,
          "balance": 12345,
          "created_at": "2023-06-01T12:00:00Z",
          "processed_counterparty_name": "WeWork"
      }]'
{
    "data": [
        {
            "type": "Flat_Bank_Transaction",
            "id": "718ca8b7-5c5d-430c-9132-11557c5f7ccc",
            "bank_transaction_id": "31415926535",
            "created_at": "2023-06-01T12:00:00Z",
            "transaction_type": "Purchase",
            "bank_account_id": "1111111111",
            "business_id": "f9baa8fd-9413-4bcf-810b-6d32604de649",
            "direction": "DEBIT",
            "balance": 12345,
            "amount": 250000,
            "processed_counterparty_name": "WeWork",
            "categorizationStatus": "PENDING"
        }
    ],
    "meta": {}
}

Documentation Index

Fetch the complete documentation index at: https://docs.layerfi.com/llms.txt

Use this file to discover all available pages before exploring further.

This endpoint allows transactions to be imported for any number of businesses simultaneously. Transactions will be matched to businesses using the transactions’ bank_account_id.

Body

array of BankTransaction objects
required
An array of BankTransaction objects to import.

Response

Returns the imported Bank Transaction Objects
curl -X POST https://sandbox.layerfi.com/v1/internal-bank-transactions \
  -H "Authorization: Bearer <access_token>" \
  -H "Content-Type: application/json" \
  -d '[{
          "external_id": "31415926535",
          "bank_account_id": "111111111",
          "direction": "Debit",
          "transaction_type": "Purchase",
          "amount": 250000,
          "balance": 12345,
          "created_at": "2023-06-01T12:00:00Z",
          "processed_counterparty_name": "WeWork"
      }]'
{
    "data": [
        {
            "type": "Flat_Bank_Transaction",
            "id": "718ca8b7-5c5d-430c-9132-11557c5f7ccc",
            "bank_transaction_id": "31415926535",
            "created_at": "2023-06-01T12:00:00Z",
            "transaction_type": "Purchase",
            "bank_account_id": "1111111111",
            "business_id": "f9baa8fd-9413-4bcf-810b-6d32604de649",
            "direction": "DEBIT",
            "balance": 12345,
            "amount": 250000,
            "processed_counterparty_name": "WeWork",
            "categorizationStatus": "PENDING"
        }
    ],
    "meta": {}
}