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

NameTypeDescription

SPACE_UUID*

String

Query Parameters

NameTypeDescription

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

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

Last updated