Skip to main content
PATCH
/
api
/
v1
/
cards-program
/
cards
/
:cardId
curl --location --request PATCH 'https://stablecoin-api.sandbox.getmeru.com/api/v1/cards-program/cards/7a8b9c0d-1e2f-3a4b-5c6d-7e8f9a0b1c2d' \
--header 'Content-Type: application/json' \
--header 'api-key: <api-key>' \
--data-raw '{
    "limit": {
        "amount": 10000,
        "frequency": "per30DayPeriod"
    }
}'
{
  "success": true,
  "cardId": "7a8b9c0d-1e2f-3a4b-5c6d-7e8f9a0b1c2d",
  "status": "active"
}

Params

cardId
string
required
The unique card identifier

Body

status
string
Card status: notActivated, active, locked, or canceled
limit
object
Spending limit configuration
configuration
object
Card configuration settings

Response

success
boolean
Indicates whether the call was successful
cardId
string
The unique card identifier
status
string
Updated card status
curl --location --request PATCH 'https://stablecoin-api.sandbox.getmeru.com/api/v1/cards-program/cards/7a8b9c0d-1e2f-3a4b-5c6d-7e8f9a0b1c2d' \
--header 'Content-Type: application/json' \
--header 'api-key: <api-key>' \
--data-raw '{
    "limit": {
        "amount": 10000,
        "frequency": "per30DayPeriod"
    }
}'
{
  "success": true,
  "cardId": "7a8b9c0d-1e2f-3a4b-5c6d-7e8f9a0b1c2d",
  "status": "active"
}

Error Responses

{
  "success": false,
  "error": "Unauthorized. Please check your authentication credentials."
}