OpenAPI 3.1.02026-08-143874115.7 MB
a84d4905fdbb
Cards
Update Card
Update, freeze, or cancel a card. Updating the card's name, billing address, or limits requires both payout:account:update and company:balance:read; a card's assigned holder may update their own card's pin and frozen state with any user token.
patch/cards/{card_id}
Request body
Example request
{
"account_id": "biz_xxxxxxxxxxxxxx",
"billing": {
"city": "Austin",
"country_code": "US",
"line1": "4180 Burnet Rd",
"line2": "Suite 210",
"postal_code": "78756",
"region": "TX"
},
"canceled": true,
"frozen": true,
"name": "Detailing supplies",
"pin": "1234",
"remove_limit": true,
"spend_limit": 2500,
"spend_limit_frequency": "monthly",
"transaction_limit": 500,
"user_id": "user_xxxxxxxxxxxxxx"
}Response
invited card onboarding completed: card provisioning started
Example response
{
"billing": {
"city": "Austin",
"country_code": "US",
"line1": "4180 Burnet Rd",
"line2": "Suite 210",
"postal_code": "78756",
"region": "TX"
},
"canceled_at": "2026-01-01T12:00:00.000Z",
"created_at": "2026-01-01T12:00:00.000Z",
"expiration_month": "12",
"expiration_year": "2027",
"id": "icrd_xxxxxxxxxxxxxx",
"last4": "4242",
"limit": {
"amount": 50,
"frequency": "daily"
},
"name": "Detailing supplies",
"object": "card",
"spent_last_month": 1234,
"status": "active",
"type": "virtual",
"user_id": "user_xxxxxxxxxxxxxx"
}