GET
/
api
/
external
/
v2
/
transactions
/
{transaction_id}
/
matched_invoices
{
  "has_more": true,
  "items": [
    {
      "id": 42,
      "type": "customer",
      "url": "https://app.pennylane.com/api/external/v2/customer_invoices/42"
    },
    {
      "id": 42,
      "type": "customer",
      "url": "https://app.pennylane.com/api/external/v2/customer_invoices/42"
    }
  ],
  "next_cursor": "dXBkYXRlZF9hdDoxNjc0MTIzNDU2"
}

Path Parameters

transaction_id
string
required

(Required)

Example:

"42"

Query Parameters

cursor
string

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.

Example:

"dXBkYXRlZF9hdDoxNjc0MTIzNDU2"

limit
string

Number of items to return per request. Defaults to 20 if not specified. Must be between 1 and 100.

Example:

"20"

Response

200
application/json

A list of invoices matched to the bank transaction

The response is of type object.