docs: publish payment destination + secure payment link integration guide#82
Open
AllenAJ wants to merge 1 commit into
Open
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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Why
Integration partners currently need manual access to internal docs. This makes onboarding self-serve in public docs.
Test plan
Closes #81