Uh oh!
There was an error while loading. Please reload this page.
docs(payment-types): simplify overview and add payment type selection guidance - #60
Conversation
api-features/payment-types-overview.mdx to avoid overlap with request workflow documentation and keep this page focused on payment type navigation and decision-making. - removGreptile SummaryThis PR simplifies the Payment Types Overview page by removing the AI-generated content warning, collapsing the Invoice-first/Payment-first workflow sections, and restructuring the content around a card-based layout with a decision-guidance section.
Confidence Score: 5/5Safe to merge — documentation-only change with no logic or API surface affected. The change touches a single documentation page, removes outdated content, and all five card links point to pages that exist in the repository. The external API reference URL is a straightforward swap from the previous internal path. No functional code is modified. No files require special attention. Important Files Changed
Flowchart%%{init: {'theme': 'neutral'}}%%
flowchart TD
A[Developer lands on Payment Types Overview] --> B{Same currency?}
B -- Yes --> C[Native & ERC20]
B -- No --> D{Fiat-denominated?}
D -- Yes --> E[Conversion]
D -- No --> F[Crosschain]
C & E & F --> G{Advanced behavior needed?}
G -- Multiple recipients --> H[Batch Payments]
G -- Scheduled/recurring --> I[Recurring Payments]
G -- No --> J[Implement chosen type]
H & I --> J
Reviews (2): Last reviewed commit: "docs(api-features): refocus payment-type..." | Re-trigger Greptile |
Uh oh!
There was an error while loading. Please reload this page.
Merge activity
|
Clean up `api-features/payment-types-overview.mdx` to avoid overlap with request workflow documentation and keep this page focused on payment type navigation and decision-making. - removed AI-generated warning banner - removed duplicated “Payment Workflows” section (invoice-first/payment-first) - removed workflow-related step from “Choosing a Payment Type” - updated intro/description to focus on payment types only - kept and refined payment type cards: - Native & ERC20 - Conversion - Crosschain - Batch - Recurring - removed hidden/deprecated use-case dependency references - kept API reference pointing to canonical OpenAPI docs: https://api.request.network/open-api
e6b580a to
5f1d50dCompareUh oh!
There was an error while loading. Please reload this page.

TL;DR
Simplified the Payment Types Overview page by removing AI-generated content warnings, streamlining the structure, and focusing on helping users choose the right payment type for their integration.
What changed?
How to test?
Why make this change?
The previous version was overly complex with workflow distinctions that may have confused users. This revision creates a clearer, more actionable guide that helps developers quickly identify which payment type suits their needs without unnecessary conceptual overhead.