Sync All Products with All Providers (Admin)
POST
/bridge-payment/admin/sync/all
Admin endpoint to bulk synchronize all products with all configured payment providers (including Polar when enabled). Supports dry run mode and selective syncing.
Authorizations
SessionAuth
Session ID from Flowless authentication
TypeAPI Key (header: X-Session-ID)
Request Body
application/json
JSON
{
"provider_id": "stripe",
"force": false,
"dryRun": false,
"updatePrices": false,
"product_ids": [
"string"
]
}
Responses
Bulk sync completed
application/json
JSON
{
"success": true,
"data": {
"results": {
},
"summary": {
"total": 0,
"successful": 0,
"failed": 0,
"created": 0,
"updated": 0,
"skipped": 0
}
}
}