PUT - Update Card Limit
Create the spend rules (Card Limit) associated with the card identified by the cardId path parameter
Update Card Limit
End point
https://api.up.money/cards/limits/{cardId}Headers
Path Parameters
Sample Request
curl --location --request PUT 'https://api.up2.money/cards/limits/{cardId}' \
--header 'x-secret: YWJjMTIzIQ==' \
--header 'Authorization-key: YOUR_AUTHORIZATION_KEY' \
--header 'Content-Type: application/json' \
--data '{
"data": {
"allowedMerchantCategories": [
"string"
],
"blockedMerchantCategories": [
"string"
],
"allowedMerchantIds": [
"string"
],
"blockedMerchantIds": [
"string"
],
"allowContactless": true,
"allowAtm": true,
"allowECommerce": true,
"allowCashback": true,
"allowCreditAuthorisations": true,
"spendLimit": [
{
"value": {
"currency": "USD",
"amount": 100
},
"interval": "DAILY"
}
],
"minTransactionAmount": 500,
"maxTransactionAmount": 0
}
}'Sample Response
Response Status
Last updated