v1
latestOpenAPI 3.0.12026-07-141671231.8 MBTransactions
List invoices matched to a bank transaction
List invoices matched to a bank transaction
ℹ️ This endpoint requires one of the following scopes: transactions:readonly, transactions:all
get/api/external/v2/transactions/{transaction_id}/matched_invoices
Path parameters
transaction_idinteger required
Query parameters
cursorstring
Example:dXBkYXRlZF9hdDoxNjc0MTIzNDU2
Cursor for pagination. Use this to fetch the next set of results. The cursor is an opaque string returned in the previous response's metadata. Leave empty for the first request.
limitinteger
Example:20
Number of items to return per request. Defaults to 20 if not specified. Must be between 1 and 100.
Response
A list of invoices matched to the bank transaction
Example response
{
"items": [
{
"id": 42,
"type": "customer",
"url": "https://app.pennylane.com/api/external/v2/customer_invoices/42"
}
],
"has_more": true,
"next_cursor": "dXBkYXRlZF9hdDoxNjc0MTIzNDU2"
}