v1

latestOpenAPI 3.1.0Copyright Pismo2026-07-247702,7523.1 MB
Limit acceptance configurations

Update limit acceptance config by program

Update the limit acceptance configuration for authorizations on the program level. This configuration applies to authorizations generated by operations defined in the provided processing code.

At least one of the following objects is required in this request:

  • network_authorization
  • platform_authorization
  • authorization

This endpoint updates the entire configuration, so you must send all fields to avoid data loss.

put/v1/acceptance/processing-code/{processingCode}/program/{programId}

Request body

Example request

{
  "network_authorization": {
    "over_limit": {
      "enable": true
    },
    "limit_refund": {
      "enable": true
    }
  },
  "platform_authorization": {
    "over_limit": {
      "enable": true
    },
    "limit_refund": {
      "enable": true
    }
  },
  "authorization": {
    "over_limit": {
      "enable": true
    },
    "limit_refund": {
      "enable": true
    }
  }
}

Response

Updated successfully

Example response

{
  "network_authorization": {
    "over_limit": {
      "enable": true
    },
    "limit_refund": {
      "enable": true
    }
  },
  "platform_authorization": {
    "over_limit": {
      "enable": true
    },
    "limit_refund": {
      "enable": true
    }
  },
  "authorization": {
    "over_limit": {
      "enable": true
    },
    "limit_refund": {
      "enable": true
    }
  }
}