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
  1. Business Manager / Space
  2. Digital Business Cards

Export Digital Cards

Export all cards in XLSX (Excel) format via the REST API.

GET /v1/spaces/{SPACE_UUID}/cards/export

JavaScript - Code Example

exportCards() {
   return this.$axois.get('spaces/'+this.space.uuid+'/cards/export', {responseType: 'blob'}).then(res => {
      let url = URL.createObjectURL(res.data);
      const link = document.createElement('a');
      link.style.display = 'none';
      link.href = url;
      link.download = 'digital_cards_export.xlsx';
      link.click();
   }).catch(err => {
     //Error message
   })
},
PreviousCreate a CardNextImport Digital Cards

Last updated 1 year ago