REST-API
All DocumentationsSupport
  • Introduction
  • First Steps
    • Getting started
    • Authentication
  • Public Digital Cards
    • Get Public Card
    • Download Public Card
    • Get QR Code of Public Card
  • Digital Business Cards
    • Digital Business Cards
      • Get all Card(s)
      • Create a Card
      • Update a Card
        • Images
        • Contact Data
        • Delete a Contact
        • Social Media
      • Delete a Card
      • Get Space Addresses
    • Combine Physical Products
      • Connect Product to Card
      • Lock Product
  • Business Manager / Space
    • Digital Business Cards
      • Get all Card(s)
      • Create a Card
      • Export Digital Cards
      • Import Digital Cards
Powered by GitBook
On this page
  • Step 1: Request secure download link
  • Step 2: Download the card
  • Download Apple Wallet
  • Step 1: Request secure download link
  • Step 2: Download the Apple Wallet
  1. Public Digital Cards

Download Public Card

Download the digital business card directly into your address book. We also will show you options to save it into your Google or Apple Wallet."

PreviousGet Public CardNextGet QR Code of Public Card

Last updated 1 year ago

Learn how to download the retrieved digital business card as a .vcf file. To do this, we first obtain a secure download link through a POST request. Once we have received the link, it remains valid for 90 seconds.

Step 1: Request secure download link

POST /v1/public/card/{UUID}/download

Path Parameters

Name
Type
Description

UUID*

string

Card UUID

You will get a link on a successfull response, please redirect the user to this link to place the download:

https://api.becard.me/v1/public/card/{UUID}/download?expires=1697762081&signature=e337ab0f1e6a1e2b3b4a52c62b215ce78e67fb7fe1dd9e19d87ef9026d5499ce

Step 2: Download the card

Redirect the user to the link from the response of the POST Request in to download the digital business card as .vcf file.

Download Apple Wallet

Becard offers the option to not only download .vcf files but also to save the digital business card directly in your Apple Wallet as a .pem file. The process is identical as with .vcf files, except for the use of a URI that differs from the REST API URI.

Step 1: Request secure download link

WALLET BASE URL:
https://wallet.becard.me

POST https://wallet.becard.me/v1/apple-wallet/generate/{UUID}

Path Parameters

Name
Type
Description

UUID*

string

Card UUID

{
    "secure_download": "https://wallet.becard.me/v1/apple-wallet/generate/{UUID}?expires=1697763640&signature=2849e534a64eb369ab8a2cc42bff6d6efc860a646728888e36b2f3c3b2b711a2"
}

Step 2: Download the Apple Wallet

Redirect the user to the link from the response of the POST Request in Step 1 to download the digital business card as .pem and store it into the Apple Wallet file.

Step 1