Top-ups ​
To top up your Stripe balance, you create a top-up object. You can retrieve individual top-ups, as well as list all top-ups. Top-ups are identified by a unique, random ID.
Related guide: Topping up your platform account
Endpoints ​
Create a top-up ​
- POST /v1/topups
Update a top-up ​
- POST /v1/topups/:id
Retrieve a top-up ​
- GET /v1/topups/:id
List all top-ups ​
- GET /v1/topups
Cancel a top-up ​
- POST /v1/topups/:id/cancel
Events ​
topup.canceledOccurs whenever a top-up is canceled.topup.createdOccurs whenever a top-up is created.topup.failedOccurs whenever a top-up fails.topup.reversedOccurs whenever a top-up is reversed.topup.succeededOccurs whenever a top-up succeeds.