Integration prompts
Copy-paste agent prompts for Bolt checkout, embeddable payments, webhooks, and gaming payment links.
Copy a prompt into Cursor, Claude Code, or your agent harness. Each prompt links to canonical docs and OpenAPI specs.
Accept payments (managed checkout)
You are integrating Bolt Checkout for a supported eCommerce platform.
- Read https://help.boltapp.com/products/checkout
- Confirm platform: Shopify, BigCommerce, or Direct API
- Use sandbox API base
https://api-sandbox.boltapp.comfor all test calls - Include
X-Api-KeyandX-Nonceon every outbound request - Verify order creation against https://assets.boltapp.com/external-api-references/bolt.yml: POST /v1/merchant/orders
- Expected result: order token returned; test transaction visible in merchant-sandbox.boltapp.com
Do not invent fields. Mark anything not in the spec as BLOCKED.
Embeddable checkout
You are adding Bolt payment fields to a custom checkout UI.
- Read https://help.boltapp.com/products/embeddable-checkout and https://help.boltapp.com/api-reference/guides/embeddable-checkout
- Default to Embeddable API v1: verify against https://assets.boltapp.com/external-api-references/embedded.yml
- Load connect.js from connect-sandbox.boltapp.com in sandbox
- Use publishable key client-side; API key server-side only
- Expected result: shopper can complete payment in your UI; transaction in dashboard
Do not promote v3 unless explicitly requested.
Verify webhooks
You are implementing Bolt webhook signature verification.
- Read https://help.boltapp.com/api-reference/guides/verify-webhooks/
- Use signing secret from Merchant Dashboard → Administration → API
- Verify HMAC on inbound requests before processing payload
- Return 200 only after verification succeeds
- Expected result: forged requests rejected; valid webhooks update order state
For cart, shipping, and tax callbacks Bolt calls on your server, see Merchant Callback.
Gaming payment links
You are integrating in-game checkout links.
- Read https://help.boltapp.com/gaming/guide/quickstart/
- Create sandbox merchant account at merchant-sandbox.boltapp.com
- POST /v1/gaming/payment_links with X-API-KEY and X-PUBLISHABLE-KEY: verify body in OpenAPI
- Handle webhooks per https://help.boltapp.com/gaming/guide/bolt-webhooks/validate-authenticity/
- Expected result: payment link URL opens hosted checkout; webhook confirms completion
Use Unity C# or JavaScript SDK labels consistently in CodeGroups.