Partners API//
- Create a credit note
List credit notes
Request to void a credit note
Fetch a credit note
Create a credit note
Create a new credit note.
Security
bearerAuth or basicAuth
Issue a credit note for an invoice.
Reason code for the credit note
Enum:"chargeback""duplicate""fraudulent""requested_by_customer""missing_remittance""overpayment_on_invoice""invoice_was_refunded""double_payment_on_invoice""missing_invoice_in_resolve""credit_transfer"
Example:"reason_code"
- Mock serverhttps://docs.resolvepay.com/_mock/partners-api/openapi/credit-notes
- Sandbox serverhttps://app-sandbox.resolvepay.com/api/credit-notes
- bearerAuth
- basicAuth
curl -i -X POST \
https://docs.resolvepay.com/_mock/partners-api/openapi/credit-notes \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"invoice_id": "PMMlaE5wbg0",
"amount": 2000,
"number": "CN-001",
"reason_code": "reason_code",
"reason_message": "reason_message",
"credit_note_url": "https://example.com/credit_note_url.pdf"
}'Response
{ "status": "pending" }