Sync Specific Products (Admin)​
POST
/bridge-payment/admin/sync/products
Admin endpoint to synchronize specific products with a payment provider. Useful for selective syncing instead of bulk operations.
Authorizations​
SessionAuth
Session ID from Flowless authentication
TypeAPI Key (header: X-Session-ID)
Request Body​
application/json
JSON
{
"product_ids": [
"string"
],
"provider_id": "stripe",
"force": false,
"dryRun": false,
"updatePrices": false
}
Responses​
Products synced successfully
application/json
JSON
{
"success": true,
"data": {
"total": 0,
"successful": 0,
"failed": 0,
"results": [
{
}
],
"summary": {
"created": 0,
"updated": 0,
"skipped": 0,
"failed": 0
}
}
}