Uh oh!
There was an error while loading. Please reload this page.
docs: publish payment destination + secure payment link integration guide - #82
Conversation
Greptile SummaryThis PR replaces the previous "Quick start"-style secure payments guide with a comprehensive end-to-end onboarding walkthrough covering wallet sign-in, payment destination creation, Client ID generation, webhook setup, and secure payment link creation. The rewrite is well-structured and meaningfully improves self-serve discoverability for integration partners. Key findings:
Confidence Score: 3/5
Important Files Changed
Sequence DiagramsequenceDiagram
actor Dev as Developer
participant Dash as Dashboard<br/>(dashboard.request.network)
participant Auth as Auth API<br/>(auth.request.network)
participant Portal as Portal<br/>(portal.request.network)
participant API as Request API<br/>(api.request.network)
Dev->>Dash: Sign in with wallet (Step 1)
Dash-->>Dev: wallet session cookie (session_token)
Dev->>Dash: Create payment destination (Step 2)
Dash-->>Dev: humanReadableInteropAddress (destinationId)
Dev->>Auth: POST /v1/client-ids (Step 3)
Auth-->>Dev: clientId
Dev->>Portal: Configure webhook endpoint (Step 4)
Portal-->>Dev: webhook signing secret
Dev->>API: POST /v2/secure-payments<br/>x-client-id: clientId<br/>destinationId: humanReadableInteropAddress:tokenAddress (Step 5)
API-->>Dev: requestIds, securePaymentUrl, token
Dev->>Dev: Share securePaymentUrl with payer
Portal-->>Dev: Webhook event (payment.confirmed / payment.partial)
opt Step 6 – optional polling
Dev->>API: GET /v2/request/{requestId}
API-->>Dev: hasBeenPaid, txHash
end
Reviews (1): Last reviewed commit: "docs: publish end-to-end payment destina..." | Re-trigger Greptile |
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
Summary
Why
Integration partners currently need manual access to internal docs. This makes onboarding self-serve in public docs.
Test plan
Closes#81