0
0
No-Codeknowledge~10 mins

One-time payments in No-Code - Step-by-Step Execution

Choose your learning style9 modes available
Concept Flow - One-time payments
Customer selects product/service
Customer chooses one-time payment option
Customer enters payment details
Payment is processed
Payment successful
Access granted
End
This flow shows how a customer makes a one-time payment: selecting a product, paying once, and then either gaining access or seeing an error.
Execution Sample
No-Code
1. Customer selects product
2. Customer chooses one-time payment
3. Customer enters payment info
4. System processes payment
5. System confirms success or failure
This sequence shows the steps a customer takes to complete a one-time payment.
Analysis Table
StepActionInput/ConditionResultNext Step
1Customer selects productProduct chosenProduct selectedGo to payment option
2Customer chooses payment typeOne-time payment selectedPayment type setEnter payment details
3Customer enters payment infoCard number, expiry, CVVPayment info receivedProcess payment
4System processes paymentValid payment info?Payment success or failureIf success: grant access; else: show error
5Payment successfulPayment approvedAccess grantedEnd
6Payment failedPayment declinedError message shownEnd
💡 Process ends after payment success or failure is confirmed.
State Tracker
VariableStartAfter Step 1After Step 2After Step 3After Step 4Final
product_selectedNoneProduct AProduct AProduct AProduct AProduct A
payment_typeNoneNoneOne-timeOne-timeOne-timeOne-time
payment_infoNoneNoneNoneCard details enteredCard details enteredCard details entered
payment_statusNoneNoneNoneNoneSuccess or FailureSuccess or Failure
access_grantedFalseFalseFalseFalseTrue or FalseTrue or False
Key Insights - 3 Insights
Why does the process stop after payment success or failure?
Because one-time payments are completed in a single transaction, the flow ends once the payment is confirmed as successful or failed, as shown in execution_table rows 5 and 6.
What happens if payment info is invalid?
The system processes the payment and finds it invalid, leading to payment failure and showing an error message, as seen in execution_table row 6.
Is access granted before payment is successful?
No, access is only granted after payment success is confirmed, which happens after step 4, as shown in execution_table row 5.
Visual Quiz - 3 Questions
Test your understanding
Look at the execution_table, what is the payment_status after step 4?
ACard details entered
BNone
CSuccess or Failure
DOne-time
💡 Hint
Check the 'payment_status' variable in variable_tracker after step 4.
At which step does the customer enter payment details?
AStep 3
BStep 2
CStep 4
DStep 5
💡 Hint
Look at the 'Action' column in execution_table for when payment info is entered.
If the payment fails, what is the next step according to the execution_table?
AAccess granted
BShow error message
CEnter payment details again
DSelect product
💡 Hint
See the 'Result' and 'Next Step' columns in execution_table row 6.
Concept Snapshot
One-time payments involve a single payment transaction.
Customer selects product, chooses one-time payment, enters payment info.
System processes payment once.
If successful, access is granted; if failed, error shown.
No recurring charges happen after this payment.
Full Transcript
One-time payments are a simple payment method where a customer pays once for a product or service. The process starts when the customer selects a product and chooses the one-time payment option. Then, the customer enters their payment details, such as card information. The system processes this payment immediately. If the payment is successful, the customer gains access to the product or service. If the payment fails, the system shows an error message. This process ends after the payment result is confirmed, with no further charges or steps required.