Skip to content
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

fix: change wording, title for display cards blueprint #83

Merged
merged 1 commit into from
Feb 27, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions docs/blueprints/cards/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,9 @@ These Blueprints will provide you with guides to meet **_95% of the compliance r
<Card
column
img={<CardIcon />}
href="/docs/blueprints/cards/display-virtual-cards"
heading="Display Virtual Cards"
href="/docs/blueprints/cards/issue-and-display-cards"
heading="Issue and Display Credit Cards"
>
Securely reveal credit cards from Basis Theory and third party issuers from your iOS app.
Securely issue and reveal credit cards from Basis Theory and third party issuers from your iOS app.
</Card>
</Card.TwoColumnLayout>
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,18 @@ import TabItem from "@theme/TabItem";
import { Alert, Alerts } from "@site/src/components/shared/Alert";
import { AuthButtons } from "@site/src/components/docs/AuthButtons";

# Display Virtual Cards
# Issue and Display Credit Cards

This blueprint provides a complete end-to-end guide on how to reveal credit card data securely using Basis Theory and a third-party card issuer without touching the data.
This blueprint provides a complete end-to-end guide on how to issue and reveal credit card data securely using Basis Theory and a third-party card issuer without touching the data.

For this blueprint, we are going to use iOS as our client application and [Express.Js](https://expressjs.com/) for our backend, but
the blueprint can be modified for your specific framework or language by leveraging any one of our many language-specific [SDKs](/docs/sdks).
If that is the case, see our complete guide for [Revealing Tokenized Data](/docs/guides/share/reveal-tokenized-data/) to get started.

This blueprint is a more end-to-end version of the following two guides:
- [Reveal Tokenized Data](/docs/guides/share/reveal-tokenized-data) - For revealing tokenized data such as the card PAN and expiration date.
- [Reveal Data from Third Party](/docs/guides/share/reveal-data-from-third-party) - For revealing the CVC from a card issue such as [Lithic](https://www.lithic.com/) or [Marqeta](https://www.marqeta.com/).

You can find examples for other languages and frameworks inside those guides.

<Alert>
Don't want to complete this blueprint? View the completed example application <a href="https://github.com/Basis-Theory-Labs/display-virtual-cards-blueprint">here</a>.
Expand All @@ -23,7 +28,7 @@ If that is the case, see our complete guide for [Revealing Tokenized Data](/docs
## Getting Started

<Alert>
If you are already familar with the Basis Theory platform and already created your first token, feel free to jump to the <a href="/docs/blueprints/cards/display-virtual-cards#setting-up-the-project">Setting Up the Project</a> section of this blueprint.
If you are already familar with the Basis Theory platform and already created your first token, feel free to jump to the <a href="/docs/blueprints/cards/issue-and-display-cards#setting-up-the-project">Setting Up the Project</a> section of this blueprint.
</Alert>

To get started, you will need a Basis Theory account.
Expand All @@ -44,11 +49,11 @@ Next you will need a [Public Application](/docs/api/applications#application-typ
Save the API Key from the created Public Application as it will be used later in this guide.
</Alert>

## Creating a Card Token
## Vault Newly Created Cards

There are many ways for which you can create a card token in the Basis Theory platform.
When a new card is issued with your system, you'll want to vault this with Basis Theory to later reveal it and perhaps process or share it.

Check the [Collect Data](/docs/guides/collect/) section of our documentation for guides on how to collect data with different technologies or click [here](/docs/guides/collect/collect-data-with-ios) if you are also using iOS for collecting data.
In order to vault these newly created cards, follow [this guide](/docs/guides/collect/collect-inbound-sensitive-data).

## Setting Up the Project

Expand Down
2 changes: 1 addition & 1 deletion docs/guides/process/extract-data.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -322,5 +322,5 @@ With a tokenized version of the credit card, we can now send it for processing,
## Learn More

- [Share Data](/docs/guides/share/)
- [Display Virtual cards](/docs/blueprints/cards/display-virtual-cards)
- [Issue and Display Credit Cards](/docs/blueprints/cards/issue-and-display-cards)
- [Display Masked Data](/docs/guides/share/display-masked-data)
2 changes: 1 addition & 1 deletion sidebars.js
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ const sidebars = {
},
items: [
"blueprints/cards/collect-and-process-cards",
"blueprints/cards/display-virtual-cards",
"blueprints/cards/issue-and-display-cards",
],
},
{
Expand Down