Update Prepaid Subscription Configuration

API Docs by APIMATIC
Advanced Billing APIAPI EndpointsSubscriptions

Update Prepaid Subscription Configuration
#

Use this endpoint to update a subscription's prepaid configuration.

POST /subscriptions/{subscription_id}/prepaid_configurations.json
Authentication

This endpoint requires BasicAuth

BasicAuth
BasicAuth
Required

Set authorization parameters for BasicAuth

Required
string

The username to use with basic authentication

  • is a required field
Required
string

The password to use with basic authentication

  • is a required field

API Code Playground

Endpoint Arguments
Parameters
Required
Required
Number
Template

The Chargify id of the subscription


Responses

  • 200
  • 422

OK

application/json

{
  "prepaid_configuration": {
    "id": 55,
    "initial_funding_amount_in_cents": 2500,
    "auto_replenish": true,
    "replenish_to_amount_in_cents": 50000,
    "replenish_threshold_amount_in_cents": 10000
  }
}
  • HTTP
  • Java
  • .NET
  • PHP
  • Python
  • Ruby
  • TypeScript
  • Go
  • Request
  • Response
curl -X POST \
  --url 'https://subdomain.chargify.com/subscriptions/222/prepaid_configurations.json'  \
  -H 'Accept: application/json' \
  -H 'Content-Type: application/json' \
  --data-raw '{
  "prepaid_configuration": {
    "initial_funding_amount_in_cents": 50000,
    "replenish_to_amount_in_cents": 50000,
    "auto_replenish": true,
    "replenish_threshold_amount_in_cents": 10000
  }
}'