GET - Card Limit
Fetch the list of spend rules associated with the card identified by the cardId path parameter.
Get - Card Limit
End point
https://api.up.money/cards/limits/{cardId}
Headers
Path Parameters
id (required)
string
^[0-9]+$
The unique identifier of a card.
Sample Request
curl --location 'https://api.up2.money/cards/limits/{cardId}' \
--header 'x-secret: YWJjMTIzIQ==' \
--header 'Authorization-key: YOUR_AUTHORIZATION_KEY' \
--data ''
Sample Response
{
"allowedMerchantCategories": [
"string"
],
"blockedMerchantCategories": [
"string"
],
"allowedMerchantIds": [
"string"
],
"blockedMerchantIds": [
"string"
],
"allowedMerchantCountries": [
"st"
],
"blockedMerchantCountries": [
"st"
],
"allowContactless": true,
"allowAtm": true,
"allowECommerce": true,
"allowCashback": true,
"allowCreditAuthorisations": true,
"minTransactionAmount": 0,
"maxTransactionAmount": 0,
"spendLimit": [
{
"value": {
"currency": "str",
"amount": 0
},
"interval": "DAILY"
}
],
"cardLevelSpendRules": {
"allowedMerchantCategories": [
"string"
],
"blockedMerchantCategories": [
"string"
],
"allowedMerchantIds": [
"string"
],
"blockedMerchantIds": [
"string"
],
"allowedMerchantCountries": [
"st"
],
"blockedMerchantCountries": [
"st"
],
"allowContactless": true,
"allowAtm": true,
"allowECommerce": true,
"allowCashback": true,
"allowCreditAuthorisations": true,
"spendLimit": [
{
"value": {
"currency": "str",
"amount": 0
},
"interval": "DAILY"
}
],
"minTransactionAmount": 0,
"maxTransactionAmount": 0
},
"profileLevelSpendRules": {
"allowedMerchantCategories": [
"string"
],
"blockedMerchantCategories": [
"string"
],
"allowedMerchantIds": [
"string"
],
"blockedMerchantIds": [
"string"
],
"allowedMerchantCountries": [
"st"
],
"blockedMerchantCountries": [
"st"
],
"allowContactless": true,
"allowAtm": true,
"allowECommerce": true,
"allowCashback": true,
"allowCreditAuthorisations": true,
"authForwardingEnabled": true
},
"identityLevelSpendRules": {
"allowedMerchantCategories": [
"string"
],
"blockedMerchantCategories": [
"string"
],
"allowedMerchantIds": [
"string"
],
"blockedMerchantIds": [
"string"
],
"allowedMerchantCountries": [
"st"
],
"blockedMerchantCountries": [
"st"
],
"allowContactless": true,
"allowAtm": true,
"allowECommerce": true,
"allowCashback": true,
"allowCreditAuthorisations": true,
"minTransactionAmount": 0,
"maxTransactionAmount": 0
}
}
Response Status
200 Success
400 Bad Request Error - Your request is invalid.
401 Unauthorized - Your credentials or access token are invalid.
403 Forbidden - Access to the requested resource or action is forbidden.
429 Too many requests.
500 Internal Server Error - There is a problem with the server. Please try again later.
503 Service Unavailable - We're temporarily offline for maintenance. Please try again later.
Last updated