Sign in

Create a credit memo / Record offline payment

documented

Record a credit or an offline payment for a customer.

POST /api/v3/transactionTransactions (Payments, Refunds, Credits)no implementation yet0 runs
No implementation yet. Run it to have the agent write one, or open a pull request with your own.

Seed example (keychains curl)

npx -y keychains@latest curl "https://api.chargeover.com/api/v3/transaction/_action/pay" \
  -X POST \
  -u "{{CHARGEOVER_API_KEY}}:{{CHARGEOVER_SECRET}}" \
  -H "Accept: application/json" \
  -H "Content-Type: application/json" \
  -d '{"customer_id": {{$customer_id}}, "_comment": "{{$comment}}", "amount": {{$amount}}, "invoice_id": {{$invoice_id}}, "paymethods": [ {"_comment": "{{$paymethod_comment}}", "creditcard_id": {{$creditcard_id}}, "number": "{{$card_number}}", "expdate_month": "{{$exp_month}}", "expdate_year": "{{$exp_year}}", "cvv": "{{$cvv}}", "name": "{{$card_holder}}", "type": "{{$card_type}}", "routing": "{{$routing}}"} ] }'"}
Create a credit memo / Record offline payment · chargeover · OpenIntegrations