# Create a Card

Create a digital business card for your team member directly through Space. Choose whether you want to create a Becard user account for this team member in the same process.

<mark style="color:green;">`POST`</mark> `/v1/spaces/{SPACE_UUID}/cards`

#### Request Body

| Name                                        | Type   | Description                                                                               |
| ------------------------------------------- | ------ | ----------------------------------------------------------------------------------------- |
| firstName<mark style="color:red;">\*</mark> | string |                                                                                           |
| lastName<mark style="color:red;">\*</mark>  | string |                                                                                           |
| position                                    | string |                                                                                           |
| department                                  | string |                                                                                           |
| email                                       | string |                                                                                           |
| connect<mark style="color:red;">\*</mark>   | boolen | Create a User Account and link this digital card to the created account? Default: `false` |

{% tabs %}
{% tab title="200: OK " %}

```json
{
    "uuid": "TVZ2xSXXXXXXX",
    "avatar": {
        "uuid": null,
        "src": "https:\/\/cdn.becard.me\/default\/card_v1.jpg"
    },
    "username": "TVZ2xSXXXXXXX",
    "display_name": "Jon Doe",
    "position": "CTO",
    "public": null,
    "connected_cards": 0,
    "connects": 0,
    "subscriptions": null,
    "created_at": "2024-02-07T13:01:53.000000Z",
    "updated_at": "2024-02-07T13:01:53.000000Z"
}
```

{% endtab %}
{% endtabs %}
