HomeGuidesAPI Reference
Log In

One Off Payment

Only use this API endpoint if your processor uses One Off Payments. Revolv3 will inform you if this is an option. You will receive an error message if you try to use one off payments without the correct processor.

{{Api Root}}/api/Invoices/one-off-payment

{
	"PaymentMethod": {
        "IpAddress" : "1.1.1.1",
        "Email" : "[email protected]",
        "PhoneNumber" : "323-555-1234",
		"BillingAddress": {
                    "AddressLine1": "123 Main St.",
                    "City": "Aliso Viejo",
                    "State": "CA",
                    "PostalCode": "92656",
                    "Country": "USA"
                },
		"BillingFirstName": "Robert",
		"BillingLastName": "Podlesni",
        "CreditCard":{
            "PaymentAccountNumber": "2222400010000008",
            "ExpirationDate": "0330",
            "SecurityCode": "737"
        }
	},
	"Invoice": {
		"MerchantInvoiceRefId": "12345",
		"EntityUseCode": null,
		"InvoiceLineItems": [
			{
				"InvoiceLineItemId": 0,
				"Name": "One Time Charge",
				"Description": "Test of 1.01",
				"Value": 1.01,
				"ValueType": "Standard",
				"TaxCode": null
			}
		]
	}
}

Response

{
    "invoiceId": 440119,
    "merchantInvoiceRefId": "12345",
    "invoiceStatus": "Paid",
    "invoiceAttemptStatus": "Success",
    "message": "Transaction complete.",
    "subtotal": 1.04,
    "taxAmount": 0.0,
    "total": 1.04
}