v1

latestOpenAPI 3.1.0Copyright Pismo2026-07-247702,7523.1 MB
Payment method configurations

Update org configuration

Update a payment methods configuration at the organization level. This operation updates only the fields with the passed values.

patch/payment-methods-configs/v1/configs

Request body

Example request

{
  "authorization": {
    "networks": [
      {
        "identifier": "Mastercard",
        "hsm_keys_id": "123456"
      }
    ],
    "cancellation_threshold": 1440,
    "confirmation_verification_endpoint": "https://yourverificationendpoint.com",
    "confirmation_verification_mtls": true,
    "confirmation_verification_mtls_prefix": "url-prefix",
    "confirmation_verification_rate": 30,
    "allow_authorization_by_document_number": true,
    "require_external_authentication": true,
    "update_balance_after_discharge": true
  },
  "payment": {
    "require_external_authentication": true,
    "update_balance_after_discharge": true
  },
  "transfer": {
    "from": {
      "require_external_authentication": true
    },
    "to": {
      "require_external_authentication": true
    }
  }
}

Response

Updated successfully

Example response

{
  "authorization": {
    "networks": [
      {
        "identifier": "Mastercard",
        "hsm_keys_id": "123456"
      }
    ],
    "cancellation_threshold": 1440,
    "confirmation_verification_endpoint": "https://yourverificationendpoint.com",
    "confirmation_verification_mtls": true,
    "confirmation_verification_mtls_prefix": "url-prefix",
    "confirmation_verification_rate": 30,
    "allow_authorization_by_document_number": true,
    "require_external_authentication": true,
    "update_balance_after_discharge": true
  },
  "payment": {
    "require_external_authentication": true,
    "update_balance_after_discharge": true
  },
  "transfer": {
    "from": {
      "require_external_authentication": true
    },
    "to": {
      "require_external_authentication": true
    }
  }
}