Update Subscription
curl --request PATCH \
  --url https://api.revolv3.com/api/Subscriptions/{subscriptionId} \
  --header 'Content-Type: application/json-patch+json' \
  --data '{
  "merchantSubscriptionRefId": "1234-5678-9101",
  "intervalType": 3,
  "intervalCount": 1,
  "subscriptionStatusType": null,
  "subscriptionCancelType": "immediate",
  "nextBillDate": "08-Sep-25"
}'
{
  "subscriptionId": 1,
  "customerId": 1,
  "merchantSubscriptionRefId": "1234-5678-9101",
  "networkTransactionId": null,
  "billingIntervalType": "Months",
  "billingIntervalCount": 1,
  "subscriptionStatusType": "Current",
  "subscriptionCancelType": "Immediate",
  "initialBillDate": "08-Sep-25",
  "nextBillDate": "08-Oct-25",
  "taxAddress": null,
  "paymentMethodIds": [
    1,
    2
  ],
  "cancelledAt": null,
  "billingPlans": [
    {
      "subscriptionBillingPlanId": 1,
      "subscriptionId": 0,
      "name": "Billing Plan 1",
      "value": 10.99,
      "startDate": "08-Sep-25",
      "cyclesRemaining": -1,
      "cycleCount": 0,
      "valueType": "Standard"
    },
    {
      "subscriptionBillingPlanId": 2,
      "subscriptionId": 0,
      "name": "Billing Plan 2",
      "value": 14.99,
      "startDate": "08-Oct-25",
      "cyclesRemaining": 12,
      "cycleCount": 0,
      "valueType": "Standard"
    }
  ],
  "message": null,
  "paymentProcessor": null,
  "processorMerchantId": null,
  "processorRawResponse": null,
  "currency": null
}

Path Parameters

subscriptionId
integer
required

Body

Response

OK

The response is of type object.