Skip to content

Convert Guest to Authenticated User

POST
/bridge-payment/convert-guest

Convert your guest checkout data (customers and payment methods) to your authenticated user account. After creating an account, use this endpoint to link your previous guest purchases to your new account. You can selectively convert specific items or bulk convert all your guest data.

Authorizations

SessionAuth

Session ID from Flowless authentication

TypeAPI Key (header: X-Session-ID)

Request Body

application/json
JSON
{
"guest_email": "string",
"customer_ids": [
"string"
],
"payment_method_ids": [
"string"
]
}

Responses

Guest data converted successfully

application/json
JSON
{
"success": true,
"data": {
"customers_converted": 0,
"payment_methods_converted": 0,
"total_converted": 0
}
}

Playground

Server
Authorization
Body

Samples

Powered by VitePress OpenAPI