Overview
Payment records are a way to track the payment history of payables (bills) and accounts receivable invoices. The/payment_records endpoint allows you to take note of every payment made towards a payable or an invoice.
If you use Monite payment rails together with account payables or accounts receivable, Monite automatically stores all payment information for payables and receivable invoices. However, when using external payment rails, you must manually create records for each payment instance - full or partial - made towards invoices.
Roles and permissions
To use the/payment_records* endpoints with an entity user token, this entity user must have a role with the payment_record permission.
If using a partner-level token, no special permissions are needed.
Payment record types
There are two types of payment records:-
Monite-created payment records -
These are created automatically for all payments made via the Monite payment links.
Each payment intent gets an associated payment record that is used to reconciliate this payment with the related payable or receivable invoice.
Monite-created payment records have the
is_externalfield set tofalse. These payment records can only be retrieved, but not modified directly by users. - External payment records - can be created and updated by the entity. These are intended for entities that use their own payment rails, and are meant to record information about full or partial payments made via external channels. External payment records can have different statuses to mirror the payment procesing status from external systems. They can also store information about future scheduled payments.
Get all payment records
To get a list of all payment records, callGET /payment_records:
is_external query parameter.
For example, the following snippet returns only payment records created using Monite payment rails:
GET /payment_records endpoint.
Get payment records for an invoice
To find all payment records associated with a specific payable or receivable invoice, callGET /payment_records and specify the invoice ID in the object_id query parameter:
External payment records
Payment record statuses
External payment records are allocated with a status that indicates their progress in the external payment system.created
This is the status for draft payment records that are created manually.
The payment record exists and is linked to an invoice but has not been applied yet, so it does not affect the invoice’s status or amount due.
Payment records in the created status can be fully edited.
processing
This status is used for payments that are being processed by the bank or financial institution.
To move the payment record to this status, call POST /payment_records / /start_processing.
Payment records in the processing status cannot be modified but is still not applied to the invoice.
You must manually move it to succeeded or canceled status once the external payment completes.
succeeded
This is a final status that indicates successful payments and sucessful refunds.
To move a payment record to this status, call POST /payment_records / /mark_as_succeeded passing the paid_at field in the body request.
Succeeded payment records modify the amount due and status of the linked invoice:
- Records with a positive amount increase the invoice’s
amount_paidand reduce theamount_due. - Records with a negative amount (that is, refunds) reduce the invoice’s
amount_paidand increase theamount_due.
canceled
Payment records in the created and processing statuses can be canceled.
Once canceled, the payment record will not be applied to the invoice and cannot be modified further.
This is a final status.
Create a payment record
To create a payment record for a payable or receivable invoice, callPOST /payment_records with the following request fields:
object.type- the invoice type (payableorreceivable) for which the payment was made.object.id- ID of the payable or receivable invoice.amountandcurrency- use a positiveamountvalue for payments made toward the invoice, and negative values for refunds.- For records in the
createdstatus that indicate future scheduled payments:planned_payment_date- scheduled date for a future payment, required when the payment is planned but not yet executed.
- For records in the
succeededstatus:paid_at- date and time when the payment was made.
payment_intent_id- the external payment reference number or transaction ID for the payment. Required for records in theprocessingandsucceededstatuses. Currentlypayment_intent_idmust be a UUID, you can use a random UUID.
status- the status of the payment record. You can create records in thecreated,processing, orsucceededstatus. If omitted, defaults tosucceeded.payment_intent_status- the status of the corresponding payment or payment intent in the partner’s payment rails. A user-defined string.payment_method- payment method used or planned for the transaction. A user-defined string.
id assigned to this payment record.
Monite automatically updates the status of the specified invoice to reflect the payment made and returns the old and new statuses in the response:
Update or cancel a payment record
External payment records in thecreated status can be manually canceled or updated:
- To update a payment record, call
PATCH /payment_records/{payment_record_id}. - To cancel a payment record in the
createdorprocessingstatuses, callPOST /payment_records/{payment_record_id/cancel}. Succeeded payment records cannot be canceled.
Refunds
If a succeeded payment record has been refunded, you can record the refund by creating a new payment record with a negative value in theamount field.
This reduces the invoice’s amount_paid, increase the amount_due, and also updates the invoice’s status if needed.
Scheduled payment records
Scheduled external payment records represent invoice payments that are planned but not yet made. The payment can be full or partial. Monite does not trigger payments based on scheduled payment records. The payment is supposed to be made by the entity itself via their preferred channel. The purpose of scheduled payment records is to record the fact that the payment is planned, and to mirror the payment status from the external system so that Monite can reconciliate the external payment with the associated invoice.Create a scheduled payment
To create a schedule payment, callPOST /payment_records and provide the following fields in addition to the required ones:
status- set tocreated,planned_payment_date- use theYYYY-MM-DDformat,payment_method- (optional) a user-defined identifier of the payment method that will be used, for example,bank_transfer,card, orcash.
created status and will not affect the invoice’s status or amounts until it’s marked as succeeded.
Update scheduled payment details
While a scheduled payment record is still in thecreated status and has not started processing, you can update its details in Monite: amount, planned_payment_date, payment_method, and other fields.
To update the scheduled payment details, call PATCH /payment_records /.
Start processing a scheduled payment
When a scheduled payment begins processing in your external system, callPOST /payment_records / /start_processing to move the corresponding payment record to the processing status.
In the request body, you can optionally provide the payment_intent_status field containing the payment status in the external system (as an arbitrary user-defined string):
processing status, the invoice status and amounts are still not updated until the payment is marked as succeeded.
Complete a scheduled payment
When the external payment succeeds, callPOST /payment_records / /mark_as_succeeded to apply the payment to the invoice.
In the request body, provide the paid_at value and, optionally, the new external payment_intent_status:
succeeded status and updates the invoice’s amount_paid, amount_due, and status accordingly.
Cancel a scheduled payment
To cancel a scheduled payment that hasn’t been executed, callPOST /payment_records / /cancel.
You can cancel payment records in the created and processing statuses.