Create One Time Payment
curl --request POST \
  --url https://api.revolv3.com/api/Subscriptions/{subscriptionId}/payment \
  --header 'Content-Type: application/json-patch+json' \
  --data '{
  "merchantInvoiceRefId": "e0792414-596c-4dc5-9877-6ca711b48a0a",
  "invoiceLineItems": [
    {
      "name": "Invoice Line Item 1",
      "description": null,
      "value": 10.99,
      "valueType": "Standard"
    },
    {
      "name": "Invoice Line Item 2",
      "description": null,
      "value": 11.99,
      "valueType": "Standard"
    },
    {
      "name": "Invoice Line Item 3",
      "description": null,
      "value": 12.99,
      "valueType": "Standard"
    }
  ]
}'
{
  "invoiceId": 1,
  "merchantInvoiceRefId": null,
  "invoiceStatus": 0,
  "invoiceAttemptStatus": "Success",
  "message": null,
  "subtotal": 10.99,
  "taxAmount": 0.98,
  "total": 11.97,
  "paymentMethodTypeId": 0,
  "processorRawResponse": null
}

Path Parameters

subscriptionId
integer
required

Body

Response

OK

The response is of type object.