curl --request GET \
--url https://api.revolv3.com/api/Subscriptions
[
{
"subscriptionId": 1,
"customerId": 3,
"merchantSubscriptionRefId": null,
"networkTransactionId": null,
"billingIntervalType": "Days",
"billingIntervalCount": 1,
"subscriptionStatusType": "current",
"subscriptionCancelType": null,
"initialBillDate": "08-Sep-25",
"nextBillDate": "09-Sep-25",
"taxAddress": {
"addressId": 0,
"addressLine1": "101 Update Street",
"addressLine2": null,
"city": "Irvine",
"state": "CA",
"postalCode": "92602",
"phoneNumber": null,
"email": null,
"country": "US"
},
"paymentMethodIds": [
1
],
"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-Sep-25",
"cyclesRemaining": 12,
"cycleCount": 0,
"valueType": "Standard"
}
],
"message": null,
"paymentProcessor": null,
"processorMerchantId": null,
"processorRawResponse": null,
"currency": null
},
{
"subscriptionId": 2,
"customerId": 3,
"merchantSubscriptionRefId": null,
"networkTransactionId": null,
"billingIntervalType": "Months",
"billingIntervalCount": 1,
"subscriptionStatusType": "recycled",
"subscriptionCancelType": null,
"initialBillDate": "08-Sep-25",
"nextBillDate": "09-Sep-25",
"taxAddress": null,
"paymentMethodIds": null,
"cancelledAt": null,
"billingPlans": null,
"message": null,
"paymentProcessor": null,
"processorMerchantId": null,
"processorRawResponse": null,
"currency": null
}
]
Retrieve subscriptions for a merchant with a status code of 200 (OK).
Additionally, an optional filter Merchant Subscription Ref ID can be used to narrow results.
If no matching subscriptions exist for the merchant, a status code of 204 (No Content) will be returned.
If the Customer ID cannot be associated with an active subscription, a status code of 204 will be returned.
If the provided Customer ID does not exist, a status code of 404 (Not Found) will be returned.
curl --request GET \
--url https://api.revolv3.com/api/Subscriptions
[
{
"subscriptionId": 1,
"customerId": 3,
"merchantSubscriptionRefId": null,
"networkTransactionId": null,
"billingIntervalType": "Days",
"billingIntervalCount": 1,
"subscriptionStatusType": "current",
"subscriptionCancelType": null,
"initialBillDate": "08-Sep-25",
"nextBillDate": "09-Sep-25",
"taxAddress": {
"addressId": 0,
"addressLine1": "101 Update Street",
"addressLine2": null,
"city": "Irvine",
"state": "CA",
"postalCode": "92602",
"phoneNumber": null,
"email": null,
"country": "US"
},
"paymentMethodIds": [
1
],
"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-Sep-25",
"cyclesRemaining": 12,
"cycleCount": 0,
"valueType": "Standard"
}
],
"message": null,
"paymentProcessor": null,
"processorMerchantId": null,
"processorRawResponse": null,
"currency": null
},
{
"subscriptionId": 2,
"customerId": 3,
"merchantSubscriptionRefId": null,
"networkTransactionId": null,
"billingIntervalType": "Months",
"billingIntervalCount": 1,
"subscriptionStatusType": "recycled",
"subscriptionCancelType": null,
"initialBillDate": "08-Sep-25",
"nextBillDate": "09-Sep-25",
"taxAddress": null,
"paymentMethodIds": null,
"cancelledAt": null,
"billingPlans": null,
"message": null,
"paymentProcessor": null,
"processorMerchantId": null,
"processorRawResponse": null,
"currency": null
}
]
OK
The response is of type object[]
.