Skip to main content

Bulk Change Recurring Price

Update the recurring price for the subscriptions.

Request Parametersapplication/json
UpdateSubscriptionsRequestModel
object
productId
integer
The product ID of the subscriptions for which you want to update the price.
newPriceValue
number
The new subscription recurring price that you want to apply.
priceCurrencyCode
string
The subscription currency code. It must be equal to the current
subscription currency code. List of supported currency codes at PayPro Global.
quantity
integer
The new product quantity that you want to apply.
By default, it returns the current product quantity.
newSubscriptionName
string
The new name for a subscription that you want to apply.
sendCustomerNotification
boolean
Possible values are true or false.
If true, it sends a customer an email that informs about
the changed subscription details, false otherwise.
By default, the customer doesn't receive any email notification.
vendorAccountId
integer
required
The vendor account ID identifies your PayPro Global account.
It can be found in Account settings > Business info.
apiSecretKey
string
required
The vendor account API secret key is
a unique key that was generated specifically for authenticating API requests.
It can be found in Store settings > General settings > Integration tab.
Response Parametersapplication/json
UpdateSubscriptionsResponseModel
object
changedItems
array[object]
itemId
integer
The subscription ID that has been updated.
isActionSuccess
boolean
Possible values are true or false. If true, the action was successful; if false, otherwise.
actionItemMessage
string
It displays the action message.
request
object
productId
integer
The product ID of the subscriptions for which you want to update the price.
newPriceValue
number
The new subscription recurring price that you want to apply.
priceCurrencyCode
string
The subscription currency code. It must be equal to the current
subscription currency code. List of supported currency codes at PayPro Global.
quantity
integer
The new product quantity that you want to apply.
By default, it returns the current product quantity.
newSubscriptionName
string
The new name for a subscription that you want to apply.
sendCustomerNotification
boolean
Possible values are true or false.
If true, it sends a customer an email that informs about
the changed subscription details, false otherwise.
By default, the customer doesn't receive any email notification.
vendorAccountId
integer
The vendor account ID identifies your PayPro Global account.
It can be found in Account settings > Business info.
apiSecretKey
string
The vendor account API secret key is
a unique key that was generated specifically for authenticating API requests.
It can be found in Store settings > General settings > Integration tab.
errors
array[object]
propertyWithError
string
propertyErrorMessages
array[string]
isSuccess
boolean
Request Sample
{
"productId": 12345,
"newPriceValue": 50.00,
"priceCurrencyCode": "USD",
"quantity": 1,
"newSubscriptionName": "Monthly premium subscription plan",
"sendCustomerNotification": true,
"vendorAccountId": 123456,
"apiSecretKey": "your_api_secret_key"
}
Response Sample
{
"changedItems": [{
"itemId": 87654321,
"isActionSuccess": true,
"actionItemMessage": "Changed price"
},{
"itemId": 87654321,
"isActionSuccess": true,
"actionItemMessage": "Changed price"
},{
"itemId": 87654321,
"isActionSuccess": true,
"actionItemMessage": "Changed price"
}],
"request": {
"productId": 12345,
"newPriceValue": 50.00,
"priceCurrencyCode": "USD",
"quantity": 1,
"newSubscriptionName": "Monthly premium subscription plan",
"sendCustomerNotification": true,
"vendorAccountId": 123456,
"apiSecretKey": "your_api_secret_key"
},
"errors": [],
"isSuccess": true
}