Preview Guest Data​
GET
/bridge-payment/preview-guest/{email}
Preview guest checkout data before converting to authenticated user. Shows all customers and payment methods associated with the guest email.
Authorizations​
SessionAuth
Session ID from Flowless authentication
TypeAPI Key (header: X-Session-ID)
Parameters​
Path Parameters
email*
Guest email address to preview
Typestring
RequiredFormat
"email"Responses​
Guest data preview
application/json
JSON
{
"success": true,
"data": {
"customers": [
{
}
],
"payment_methods": [
{
}
],
"total_items": 0
}
}