Skip to main content
POST
/
business
/
card
/
{reference}
/
limits
Set per-card spend limits
curl --request POST \
  --url https://api-staging.usenumero.com/numeroaccount/api/v1/business/card/{reference}/limits \
  --header 'Content-Type: application/json' \
  --header 'X-Numero-Api-Key: <api-key>' \
  --data '
{
  "dailyLimit": 5000,
  "perTransactionLimit": 1000
}
'
{ "data": { "cardReference": "NCRD24AD18BEBD474A", "customerId": "NCUS9953596C2B7F45", "label": "<string>", "brand": "Visa", "firstSix": "428852", "lastFour": "6353", "expiryMonth": "06", "expiryYear": "2029", "currency": "USD", "balance": 5, "isPhysical": true, "dailyLimit": 123, "perTransactionLimit": 123, "issuedAt": "2023-11-07T05:31:56Z", "capabilities": [ "USD", "APPLE_PAY", "GOOGLE_PAY" ] }, "error": { "message": "<string>", "param": "<string>" }, "meta": { "request_id": "<string>", "pagination": { "page": 123, "page_size": 123, "total": 123, "has_more": true } } }

Authorizations

X-Numero-Api-Key
string
header
required

Your business API key (live_key_...). Issued on approval; managed in Dashboard → Settings → Developer.

Path Parameters

reference
string
required

Body

application/json
dailyLimit
number | null
Example:

5000

perTransactionLimit
number | null
Example:

1000

Response

The card (masked only)

Canonical response envelope for the public surface. data on success, error on failure.

data
object
required

A card as exposed to you — masked only.

error
object
required
meta
object
required