v1

latestOpenAPI 3.0.22026-07-2441902.6 MB
FSI Integrations API

Modify daily limit.

Modify daily limit

put/fsi/contacts/{contact_id}/cards/{card_id}/spendLimits

Path parameters

contact_idstring required

The contact id

card_idstring required

The card id

Query parameters

interaction_idstring

The interaction id

Request body

reasonstring

Reasons for modifying the daily limit of debit cards

is_one_day_onlyboolean

Is it possible to only modify the limit for one day's time

Example request

{
  "card_id": "Card Id",
  "reason": "Reasons for modifying the daily limit of debit cards",
  "is_one_day_only": false,
  "spend_limit_controls": {
    "maximum_authorizations_frequency": "1",
    "maximum_atm_cash_authorizations_amount": "10000.00",
    "maximum_atm_cash_authorizations_count": 1,
    "maximum_single_atm_transaction_amount": "10000.00",
    "maximum_otc_cash_authorizations_amount": "20000.00",
    "maximum_otc_authorizations_count": 1,
    "maximum_single_otc_cash_authorization_amount": "10000.00",
    "maximum_retail_authorizations_amount": "10000.00",
    "maximum_retail_authorizations_count": 1,
    "maximum_single_retail_authorization_amount": "10000.00"
  }
}

Response

The stop payment response.

idstring

The primary id

card_idstring required

The debit card id

reasonstring

Reasons for modifying the daily limit of debit cards

is_one_day_onlyboolean

Is it possible to only modify the limit for one day's time

Example response

{
  "id": "id",
  "card_id": "Card Id",
  "reason": "Reasons for modifying the daily limit of debit cards",
  "is_one_day_only": false,
  "spend_limit_controls": {
    "maximum_authorizations_frequency": "1",
    "maximum_atm_cash_authorizations_amount": "10000.00",
    "maximum_atm_cash_authorizations_count": 1,
    "maximum_single_atm_transaction_amount": "10000.00",
    "maximum_otc_cash_authorizations_amount": "20000.00",
    "maximum_otc_authorizations_count": 1,
    "maximum_single_otc_cash_authorization_amount": "10000.00",
    "maximum_retail_authorizations_amount": "10000.00",
    "maximum_retail_authorizations_count": 1,
    "maximum_single_retail_authorization_amount": "10000.00"
  },
  "custom_fields": [
    {
      "key": "sample_key",
      "value": "sample_value"
    }
  ]
}