Visa · Example Payload

Visa Transaction Controls Example

AccountsBankingCredit CardsDigital CommerceDigital WalletsFintechForeign ExchangeFraud PreventionMerchantsMoney MovementPaymentsTokenizationFortune 500

Visa Transaction Controls Example is an example object payload from Visa, with 2 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

requestresponse

Example Payload

Raw ↑
{
  "request": {
    "method": "POST",
    "path": "/vctc/cardcontrols/v1/controls",
    "headers": {
      "Content-Type": "application/json"
    },
    "body": {
      "primaryAccountNumber": "4000000000000010",
      "controls": [
        {
          "controlType": "MCCControl",
          "merchantCategoryCode": "7995",
          "controlEnabled": true,
          "controlAction": "Decline"
        },
        {
          "controlType": "SpendingLimitControl",
          "transactionLimit": "500.00",
          "currencyCode": "840",
          "controlEnabled": true
        }
      ]
    }
  },
  "response": {
    "status": 200,
    "body": {
      "status": "Success",
      "documentId": "ctrl-2026050301",
      "primaryAccountNumber": "4000000000000010",
      "controls": [
        {
          "controlType": "MCCControl",
          "merchantCategoryCode": "7995",
          "controlEnabled": true,
          "controlAction": "Decline"
        }
      ]
    }
  }
}