# Order card
Every card is linked to an account, so make sure to get an account in place first.
Example virtual card order request:
POST /v3/cards
Content-Type: application/json
Authorization: Bearer <access_token>
{
"individual_id": "bd4af0ff-0a72-4e09-b247-c6d8c2391496",
"account_id": "3c4c7a7b-2266-47a5-b774-d6d1a299e85c",
"display_name": "Expenses",
"exp_month": "12",
"exp_year": "2024",
"type": "virtual"
}
Response:
HTTP 200 OK
{
"id": "3cb11f6a-0da4-486c-9745-6f6c6c05d26d",
"display_name": "Expenses",
"type": "virtual",
"brand": "visa",
"region": "europe",
"exp_month": "12",
"exp_year": "2024",
"last4": "3770",
"currency": "EUR",
"account_id": "3c4c7a7b-2266-47a5-b774-d6d1a299e85c",
"individual_id": "bd4af0ff-0a72-4e09-b247-c6d8c2391496",
"status": "not_activated"
}