API documentation
interface
CreatePaymentRequest
export interface CreatePaymentRequest {
accountId: string;
provider: PaymentProviderType;
contactId: string;
currency: string;
amount: number;
reference: string;
recipientEmail?: string;
paymentDate?: Date;
/** Unlimit external SEPA only; omitted elsewhere. Backend defaults to Express when omitted. */
sepaTransferPriority?: SepaTransferPriority;
}