This endpoint returns a stripe checkout session link to add balance to a user's wallet.
Request
Body Params application/json
Request Code Samples
curl --location --request POST 'https://api.zapmail.ai/api/v2/wallet/balance' \
--header 'x-auth-zapmail;' \
--header 'x-workspace-key;' \
--header 'x-service-provider;' \
--header 'Content-Type: application/json' \
--data-raw '{
"amount": 100.00
}'
Responses
application/json {
"message": "Checkout session created successfully",
"paymentLink": "https://example.com/payment-link/12345"
}
Modified at 2025-10-14 09:22:00