POST
/
api
/
external
/
v2
/
customer_invoices
/
{customer_invoice_id}
/
matched_transactions
Match a transaction to a customer invoice
curl --request POST \
  --url https://app.pennylane.com/api/external/v2/customer_invoices/{customer_invoice_id}/matched_transactions \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "transaction_id": 42
}'
This response does not have an example.

Authorizations

Authorization
string
header
required

The access token received from the authorization server in the OAuth 2.0 flow.

Path Parameters

customer_invoice_id
integer
required

Body

application/json
transaction_id
integer
required

ID of the transaction

Example:

42

Response

Transaction matched successfully