Recipes Overview
Start Here​
Use this sequence:
- Complete Recipe 0: Account preflight + encryption
- Pick the business flow that matches your use case
Recipe Index​
- Recipe 0: Account preflight + encryption
- Recipe 1: Merchant gets paid (payments)
- Recipe 2: P2P wallet-to-wallet transfer
- Recipe 3: Remittance / FX transfer
- Recipe 4: Deposit
- Recipe 5: Cashout
Shared Contract (Important)​
Use these aliases in your app code:
session_token_enc: encrypted value your client sends to wrapperstransaction_id_enc: encrypted transaction id for transaction status lookupsession_token_encmust be minted from the correct PW participant:p2p/cashout->debit_partyPW user,deposit->credit_partyPW user,inttransfer-> the PW-side participant
Wrappers map these aliases to upstream API fields:
session_token_enc->session_tokentransaction_id_enc->transaction_id
Before You Implement​
- Read Transactions Overview
- Read Token Encryption Guide