List ReservePlans Preview

Returns a list of ReservePlans previously created. The ReservePlans are returned in sorted order, with the most recent ReservePlans appearing first.

Parameters

No parameters.

More parameters

  • ending_beforestring

  • limitinteger

  • starting_afterstring

Returns

A dictionary with a data property that contains an array of up to limit ReservePlans, starting after ReservePlan starting_after and ending before ReservePlan ending_before. Each entry in the array is a separate ReservePlan object. If no more ReservePlans are available, the resulting array will be empty.

GET /v1/reserve/plans
cURL
curl https://api.stripe.com/v1/reserve/plans \
-u "sk_test_BQokikJ...2HlWgH4olfQ2sk_test_BQokikJOvBiI2HlWgH4olfQ2:" \
-H "Stripe-Account: {{CONNECTED_ACCOUNT_ID}}"
Response
{
"object": "list",
"data": [
{
"id": "resplan_61SxxwCbZ70gJfcoy41Q8rCFhzAUW",
"object": "reserve.plan",
"created": 1753405164,
"created_by": "application",
"currency": "usd",
"disabled_at": null,
"livemode": false,
"metadata": {},
"percent": 15,
"rolling_release": {
"days_after_charge": 30,
"expires_on": 1755997163
},
"status": "active",
"type": "rolling_release"
},
{
"id": "resplan_61SxrVOzQu6XIJSCx41Q8rCFhzAUW",
"object": "reserve.plan",
"created": 1753380438,
"created_by": "application",
"currency": "usd",
"disabled_at": 1753405108,
"livemode": false,
"metadata": {},
"percent": 15,
"rolling_release": {
"days_after_charge": 30,
"expires_on": 1755972438
},
"status": "disabled",
"type": "rolling_release"
}
],
"has_more": false,
"url": "/v1/reserve/plans"
}

Disable a ReservePlan Preview

Disables a ReservePlan by transitioning it to a disabling state.

All associated ReserveHolds will be asynchronously released, after which the plan will automatically transition to disabled state.

Note: This action is irreversible - a disabled ReservePlan cannot be re-enabled.

Parameters

  • idstringRequired

    The identifier of the ReservePlan to disable.

Returns

Returns the updated ReservePlan object.

POST /v1/reserve/plans/:id/disable
cURL
curl -X POST https://api.stripe.com/v1/reserve/plans/resplan_61SxrVOzQu6XIJSCx41Q8rCFhzAUW/disable \
-u "sk_test_BQokikJ...2HlWgH4olfQ2sk_test_BQokikJOvBiI2HlWgH4olfQ2:" \
-H "Stripe-Account: {{CONNECTED_ACCOUNT_ID}}"
Response
{
"id": "resplan_61SxrVOzQu6XIJSCx41Q8rCFhzAUW",
"object": "reserve.plan",
"created": 1753380438,
"created_by": "application",
"currency": "usd",
"disabled_at": null,
"livemode": false,
"metadata": {},
"percent": 15,
"rolling_release": {
"days_after_charge": 30,
"expires_on": 1755972438
},
"status": "disabling",
"type": "rolling_release"
}

Reserve Releases Preview

ReserveReleases represent the release of funds from a ReserveHold.

Early Fraud Warning 

An early fraud warning indicates that the card issuer has notified us that a charge may be fraudulent.

Related guide: Early fraud warnings

Reviews 

Reviews can be used to supplement automated fraud detection with human expertise.

Learn more about Radar and reviewing payments here.