Business API
Create a card
api
post
/cards

Create a card

Create a new card for an existing member of your Revolut Business team.

When using the API, you can create only virtual cards. To create a physical card, use the Revolut Business app.

note

This feature is available in the UK, US and the EEA.

This feature is not available in Sandbox.

To use the Cards API, please contact Revolut API Support.

For more information, see the guides: Manage cards.

Request

Request body
Body object 

Response

Information about the card

Response body
Body object 
Was this page helpful?
POST
/cards . 
curl -L -X POST 'https://b2b.revolut.com/api/1.0/cards' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
-H 'Authorization: Bearer <TOKEN>' \
--data-raw '{
"request_id": "7a10f3eb-fe56-4699-9bd0-044a63508828",
"virtual": true,
"holder_id": "173ab846-de2a-1234-5678-160bd2e660e6",
"label": "Kirby Janette",
"accounts": [
"75aa436d-2a04-4ab9-af14-ed0955769b8c"
],
"categories": [
"groceries",
"restaurants"
],
"spending_limits": {
"single": {
"amount": 200.22,
"currency": "GBP"
},
"week": {
"amount": 200.44,
"currency": "GBP"
}
}
}'
Request body samples
{
"request_id": "7a10f3eb-fe56-4699-9bd0-044a63508828",
"virtual": true,
"holder_id": "173ab846-de2a-1234-5678-160bd2e660e6",
"label": "Kirby Janette",
"accounts": [
"75aa436d-2a04-4ab9-af14-ed0955769b8c"
],
"categories": [
"groceries",
"restaurants"
],
"spending_limits": {
"single": {
"amount": 200.22,
"currency": "GBP"
},
"week": {
"amount": 200.44,
"currency": "GBP"
}
}
}
Response body samples
{
"id": "aa14a9af-d7a7-4214-a743-lok818f74bd0",
"last_digits": "2671",
"expiry": "09/2027",
"state": "active",
"holder_id": "173ab846-de2a-1234-5678-160bd2e660e6",
"label": "Kirby Janette",
"virtual": true,
"product": {
"code": "MBJ"
},
"accounts": [
"f52c6c84-26b9-4e95-bbcf-99ed6523fb51"
],
"categories": [
"restaurants",
"groceries"
],
"spending_limits": {
"single": {
"amount": 200.22,
"currency": "GBP"
},
"week": {
"amount": 200.44,
"currency": "GBP"
}
},
"created_at": "2022-09-15T11:04:11.047305Z",
"updated_at": "2022-09-15T11:04:11.047305Z"
}