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
  • Get all digital cards
  • Get a single digital card
  1. Business Manager / Space
  2. Digital Business Cards

Get all Card(s)

Retrieve a single digital card or all available ones in your space and display them as a list in JSON format.

Get all digital cards

Retrieve all digital cards associated with this space.

GET /v1/spaces/{SPACE_UUID}/cards

Path Parameters

Name
Type
Description

SPACE_UUID*

String

Query Parameters

Name
Type
Description

with

string

emails

{
    "data": [
        {
            "uuid": "ZHJ8l7XXXXXX",
            "avatar": {
                "uuid": null,
                "src": "https://cdn.becard.me/default/card_v1.jpg"
            },
            "username": "jon-XXX",
            "display_name": "Jon Doe",
            "position": "CTO",
            "public": true,
            "connected_cards": 0,
            "connects": 0,
            "subscriptions": null,
            "created_at": "2024-02-06T17:03:14.000000Z",
            "updated_at": "2024-02-06T17:03:14.000000Z"
        },
    ],
    "links": {
        "first": "http://localhost:8000/v1/spaces/XXXXXX/cards?page=1",
        "last": "http://localhost:8000/v1/spaces/XXXXXX/cards?page=1",
        "prev": null,
        "next": null
    },
    "meta": {
        "current_page": 1,
        "from": 1,
        "last_page": 1,
        "links": [
            {
                "url": null,
                "label": "« Previous",
                "active": false
            },
            {
                "url": "http://localhost:8000/v1/spaces/XXXXXX/cards?page=1",
                "label": "1",
                "active": true
            },
            {
                "url": null,
                "label": "Next »",
                "active": false
            }
        ],
        "path": "http://localhost:8000/v1/spaces/XXXXXX/cards",
        "per_page": 10,
        "to": 1,
        "total": 1
    }
}

Get a single digital card

PreviousDigital Business CardsNextCreate a Card

Last updated 1 year ago

To learn how to query a single digital card, please visit the '' tab.

Digital Business Cards