Skip to main content

Recipes Overview

Start Here​

Use this sequence:

  1. Complete Recipe 0: Account preflight + encryption
  2. Pick the business flow that matches your use case

Recipe Index​

Shared Contract (Important)​

Use these aliases in your app code:

  • session_token_enc: encrypted value your client sends to wrappers
  • transaction_id_enc: encrypted transaction id for transaction status lookup
  • session_token_enc must be minted from the correct PW participant: p2p/cashout -> debit_party PW user, deposit -> credit_party PW user, inttransfer -> the PW-side participant

Wrappers map these aliases to upstream API fields:

  • session_token_enc -> session_token
  • transaction_id_enc -> transaction_id

Before You Implement​