Skip to content

Bulk Update Subscriptions (Admin)​

POST
/bridge-payment/admin/subscriptions/bulk-update

Admin endpoint to update multiple subscriptions at once. Supports updating metadata, cancellation settings, and trial periods. Can optionally sync changes with payment providers.

Authorizations​

SessionAuth

Session ID from Flowless authentication

TypeAPI Key (header: X-Session-ID)

Request Body​

application/json
JSON
{
"subscription_ids": [
"string"
],
"updates": {
"metadata": {
},
"cancel_at_period_end": true,
"trial_end": "string"
},
"provider_sync": true
}

Responses​

Bulk update completed

application/json
JSON
{
"success": true,
"data": {
"total": 0,
"successful": 0,
"failed": 0,
"results": [
{
}
]
}
}

Playground​

Server
Authorization
Body

Samples​

Powered by VitePress OpenAPI