Change card limits

Here, you will learn how to change the card limits in Tuum.

Use case

In this example, we will set limits for cash withdrawals.

Use case data
API parameters with values

The card limits will be changed for card C001664282649.

...cards/C001664282649/limits/change

Limit type for cash service.

"limitCode": "CASH",

The single transaction limit is 500 EUR.

"transactionLimit": {
        "amount": "500",
        "currencyCode": "EUR"
      } 

The daily limit is 3,000 EUR.

"dailyLimit": {
        "amount": 3000,
        "currencyCode": "EUR"
      },    

The monthly limit is 7,000 EUR.

 "monthlyLimit": {
        "amount": 7000,
        "currencyCode": "EUR"
      },

Sample API call

To change the card limits, use the following endpoint:

https://card-api.sandbox.tuumplatform.com/api/v1/cards/{cardId}/limits/change

Learn more about the change card limits endpoint in the Tuum developer portal.

Sample request

The sample request body is as follows:

{
  "limits": [
    {
      "limitCode": "CASH",
      "dailyLimit": {
        "amount": 1000,
        "currencyCode": "EUR"
      },
      "monthlyLimit": {
        "amount": 5000,
        "currencyCode": "EUR"
      },
      "transactionLimit": {
        "amount": 500,
        "currencyCode": "EUR"
      }
    }
  ]
}

Sample response

Below you will find the response to the API request:

Response
{
  "errors": null,
  "validationErrors": null,
  "data": null
}

Result

The transaction, daily, and monthly limits for cash services have been updated. Changes to the card limits take effect immediately.

Last updated

Was this helpful?