Stripe API example
The validation project at validation/stripe/ models a 24-endpoint slice of Stripe’s API. Highlights:
- Form-encoded bodies (
application/x-www-form-urlencoded) - Mandatory
Idempotency-Keyheaders via{{$.uuid}} - Multi-tenant via
Stripe-Accountheader — same credential, different acting identity per request (modeled as two actors with differentinject.headers) - 5 resources spanning customer → payment_method → payment_intent → refund
Full annotated walkthrough is part of Phase 2 documentation.