v1

latestOpenAPI 3.1.0Copyright Pismo2026-07-247702,7523.1 MB
Dormancy

Update dormancy configuration

Updates a dormancy configuration for a division or program.

This endpoint generates a Dormancy configuration updated event. See Data and reporting for more information about events and setting up event notifications.

patch/corporate/v2/dormancy-config/{dormancyConfigId}

Path parameters

dormancyConfigIdstring required

Dormancy configuration ID. This is the ID that the Pismo platform generates when you use Create dormancy configuration to set up dormancy.

Request body

check_timestring time

Dormancy check time<br> <b>Note</b>: The timezone is inherited from the customer's divisions or programs.

dormant_processing_codesValidProcessingCode[]

List of processing codes that prevent account reactivation. If there are financial transactions in an account that were made with any of these codes, the account cannot be reactivated.

deny_forced_transaction_reactivationboolean

Whether an account under that dormancy configuration should be reactivated when a forced transaction is made to that account (true) or not (false).

Example request

{
  "check_time": "09:00:00",
  "statuses": [
    {
      "status": "NORMAL",
      "days": 19,
      "reason_external_id": "CREDIT ONLY",
      "restrictions": [
        {
          "current_reason_external_id": "CREDIT_ONLY",
          "new_reason_external_id": "DEBIT_ONLY"
        }
      ]
    }
  ],
  "dormant_processing_codes": [
    "220040"
  ],
  "deny_forced_transaction_reactivation": true,
  "reactivation_exceptions_config": {
    "field": "soft_descriptor",
    "values": [
      "001"
    ]
  }
}

Response

No Content