-
Notifications
You must be signed in to change notification settings - Fork 7
add /cards endpoints, sandbox simulators, and Cards docs tab #486
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
AaryamanBhute
wants to merge
8
commits into
main
Choose a base branch
from
moonrise-limestone
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+4,968
−64
Open
Changes from all commits
Commits
Show all changes
8 commits
Select commit
Hold shift + click to select a range
a35efa9
add /cards endpoints, sandbox simulators, and Cards docs tab
AaryamanBhute 93bfd67
fold /cards/{id}/funding-sources into PATCH /cards/{id}, add currency…
AaryamanBhute 687dbae
fold close (DELETE /cards/{id}) into PATCH /cards/{id} with state: CL…
AaryamanBhute 045ff36
address Greptile review feedback on Cards docs
AaryamanBhute baac351
remove GET /cards/{id}/transactions; rely on CARD_TRANSACTION.UPDATED…
AaryamanBhute 24fc90f
remove "Signed sensitive actions" FeatureCard from Cards landing
AaryamanBhute d6bd129
extract Cards docs bodies into reusable snippets/cards/
AaryamanBhute 563d88b
address Peng review: error codes, accountId filter, drop CARD_TRANSAC…
AaryamanBhute File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,9 @@ | ||
| --- | ||
| title: "Freezing & Closing Cards" | ||
| description: "Freeze, unfreeze, and close cards via the signed-retry pattern" | ||
| icon: "/images/icons/lock.svg" | ||
| --- | ||
|
|
||
| import CardsFreezingAndClosing from '/snippets/cards/freezing-and-closing.mdx'; | ||
|
|
||
| <CardsFreezingAndClosing /> |
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,9 @@ | ||
| --- | ||
| title: "Funding Sources" | ||
| description: "Bind and update internal accounts as card funding sources" | ||
| icon: "/images/icons/wallet1.svg" | ||
| --- | ||
|
|
||
| import CardsFundingSources from '/snippets/cards/funding-sources.mdx'; | ||
|
|
||
| <CardsFundingSources /> |
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,9 @@ | ||
| --- | ||
| title: "Issuing Cards" | ||
| description: "Create a virtual card and observe its lifecycle" | ||
| icon: "/images/icons/credit-card1.svg" | ||
| --- | ||
|
|
||
| import CardsIssuingCards from '/snippets/cards/issuing-cards.mdx'; | ||
|
|
||
| <CardsIssuingCards /> |
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,11 @@ | ||
| --- | ||
| title: "Cards" | ||
| sidebarTitle: "Introduction" | ||
| description: "Issue virtual debit cards, decision authorizations in real time, and reconcile transactions against internal accounts." | ||
| icon: "/images/icons/credit-card1.svg" | ||
| mode: "wide" | ||
| --- | ||
|
|
||
| import CardsIntro from '/snippets/cards/intro.mdx'; | ||
|
|
||
| <CardsIntro /> | ||
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,9 @@ | ||
| --- | ||
| title: "Cardholder Setup" | ||
| description: "Prepare a customer to receive a card" | ||
| icon: "/images/icons/people.svg" | ||
| --- | ||
|
|
||
| import CardsCardholderSetup from '/snippets/cards/cardholder-setup.mdx'; | ||
|
|
||
| <CardsCardholderSetup /> |
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,9 @@ | ||
| --- | ||
| title: "Implementation Overview" | ||
| description: "End-to-end architecture for issuing and operating cards" | ||
| icon: "/images/icons/code.svg" | ||
| --- | ||
|
|
||
| import CardsImplementationOverview from '/snippets/cards/implementation-overview.mdx'; | ||
|
|
||
| <CardsImplementationOverview /> |
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,9 @@ | ||
| --- | ||
| title: "Sandbox Testing" | ||
| description: "Drive deterministic card outcomes with the simulate endpoints" | ||
| icon: "/images/icons/sandbox.svg" | ||
| --- | ||
|
|
||
| import CardsSandboxTesting from '/snippets/cards/sandbox-testing.mdx'; | ||
|
|
||
| <CardsSandboxTesting /> |
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,9 @@ | ||
| --- | ||
| title: "Webhooks" | ||
| description: "Card webhook events and how to consume them" | ||
| icon: "/images/icons/bell.svg" | ||
| --- | ||
|
|
||
| import CardsWebhooks from '/snippets/cards/webhooks.mdx'; | ||
|
|
||
| <CardsWebhooks /> |
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,9 @@ | ||
| --- | ||
| title: "Quickstart" | ||
| description: "Issue your first card and simulate a transaction end to end" | ||
| icon: "/images/icons/rocket.svg" | ||
| --- | ||
|
|
||
| import CardsQuickstart from '/snippets/cards/quickstart.mdx'; | ||
|
|
||
| <CardsQuickstart /> |
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,9 @@ | ||
| --- | ||
| title: "Terminology" | ||
| description: "Concepts and resources specific to the Cards API" | ||
| icon: "/images/icons/file-text.svg" | ||
| --- | ||
|
|
||
| import CardsTerminology from '/snippets/cards/terminology.mdx'; | ||
|
|
||
| <CardsTerminology /> |
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,9 @@ | ||
| --- | ||
| title: "Reconciliation" | ||
| description: "How card transactions reconcile, and what exceptions to act on" | ||
| icon: "/images/icons/checkmark1.svg" | ||
| --- | ||
|
|
||
| import CardsReconciliation from '/snippets/cards/reconciliation.mdx'; | ||
|
|
||
| <CardsReconciliation /> |
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
Oops, something went wrong.
Oops, something went wrong.
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.
Uh oh!
There was an error while loading. Please reload this page.